HTML 文檔中的元素是一個接著一個排列的,只是簡單地在在塊級元素的前后加上拆行,是一種流水布局。但是,我們所見到的 Web 頁面按照一定的規(guī)則布局排版的(通常是多列的),所以就要借助一定的方法來實現(xiàn)這種布局,通常的解決方案是:使用區(qū)塊元素 <div> 或 表格(<table>)來布局 Web 頁面的內(nèi)容。
CSS Code復(fù)制內(nèi)容到剪貼板
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <!-- 鏈接到外部樣式表 -->
- <link rel="stylesheet" href="css/mystyle.css">
- <title>Island estaurant</title>
- </head>
- <body>
- <table id="container">
- <!-- 頭部 -->
- <tr>
- <td id="header" colspan="2">
- <h1>點菜系統(tǒng)</h1>
- </td>
- </tr>
- <!-- 主體 -->
- <tr>
- <!-- 菜單 -->
- <td id="menu">
- <b>菜品</b><br>
- <div id="dishes">
- 小雞燉蘑菇<br>
- 家常豆腐<br>
- 酸辣土豆絲<br>
- </div>
- </td>
- <!-- 內(nèi)容 -->
- <td id="content">
- 小雞燉蘑菇:<br>
- 幼雞一只
- </td>
- </tr>
- <!-- 尾部 -->
- <tr>
- <td id="footer" colspan="2">世俗孤島的餐廳</td>
- </tr>
- </table>
- </body>
- </html>
-
CSS Code復(fù)制內(nèi)容到剪貼板
-
- #container
- {
- width: 600px;
- margin: 100px;
-
- border-spacing: 0;
- }
-
- #header
- {
- background-color: red;
- text-align: center;
- }
- h1
- {
- margin-bottom: 0px;
- }
-
- #menu
- {
- background-color: #FFD700;
- height: 200px;
- width: 150px;
- }
- #dishes
- {
- padding-top: 10px;
- padding-left: 10px;
- line-height: 20px;
- }
-
- #content
- {
- background-color: gray;
- height: 200px;
- width: 450px;
- }
-
- #footer
- {
- background-color: blue;
- height: 25px;
- text-align: center;
- }