這次帶給大家H5的div佈局與table佈局詳解,H5div佈局與table佈局的注意事項有哪些,下面就是實戰案例,一起來看一下。
本文實例為大家解析了html5 p佈局與table佈局,供大家參考,具體內容如下
p佈局:html+css實作簡單佈局。
#container中height不能寫成百分數,必須為具體高度。
<!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>
效果圖:
我相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是H5的div版面與table版面詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!