<!DOCTYPE html>  <html>  <head lang="en">      <meta charset="UTF-8">      <title>p布局</title>      <style type="text/css">          body{              margin:0;              padding:0;          }          #container{              width:100%;              height:650px;              background-color: aqua;          }          #heading{              width:100%;              height:10%;              background-color: azure;          }          #content-menu{              width:30%;              height:80%;              background-color: chartreuse;              float:left;          }          #content-body{              width:70%;              height:80%;              background-color: chocolate;              float:left;          }          #footer{              width:100%;              height:10%;              background-color: darkgrey;              clear: both;          }      </style>  </head>  <body>      <p id="container">          <p id="heading">頭部</p>          <p id="content-menu">內容菜單</p>          <p id="content-body">內容主體</p>          <p id="footer">底部</p>      </p>  </body>  </html>
效果圖:
table布局:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>table布局</title> </head> <body marginwidth="0px" marginheight="0px"> <table width="100%" height="650px" style="background-color: aqua"> <tr> <td colspan="3" width="100%" height="10%" style="background-color: chartreuse">這是頭部</td> </tr> <tr> <td width="20%" height="80%" style="background-color: antiquewhite">左菜單</td> <td width="60%" height="80%" style="background-color: coral">內容</td> <td width="20%" height="80%" style="background-color: cornflowerblue">右菜單</td> </tr> <tr> <td colspan="3" width="100%" height="10%" style="background-color: crimson">這是底部</td> </tr> </table> </body> </html>
效果圖:
以上就是html5 div布局與table布局詳解 的內容,更多相關內容請關注PHP (m.survivalescaperooms.com)!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。
新聞熱點
疑難解答