HTML使用div和table進行佈局
使用div佈局:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>div佈局</title>
<style type="text/css">
body{
/*去掉周圍的白邊*/
margin: 0px;
}
#container{
width: 100%;
height: 950px;
background-color: aquamarine;
}
#heading{
width: 100%;
height: 10%;
background-color: gray;
}
#content_menu{
width: 30%;
height: 80%;
background-color: antiquewhite;
float: left;
}
#content_body{
width: 70%;
height: 80%;
background-color: blueviolet;
float: left;
}
#footing{
width: 100%;
height: 10%;
background-color: blue;
clear: both;
}
</style>
</head>
<body >
<div id="container">
<div id="heading">頭部</div>
<div id="content_menu">內容選單</div>
<div id="content_body">內容主體</div>
<div id="footing">底部</div>
</div>
</body>
</html>
使用table佈局:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>table佈局</title>
</head>
<body marginwidth="0px" marginheight="0px">
<table width="100%" height="950px" style="background-color: gray">
<tr>
<td colspan="3" width="100%" height="10%" style="background-color: blueviolet">這是頭部</td>
</tr>
<tr>
<td width="20%" height="80%" style="background-color: antiquewhite">
<ul>
<li>iOS</li>
<li>Android</li>
<li>Win10</li>
</ul>
</td>
<td width="60%" height="80%" style="background-color: yellow">中間主體</td>
<td width="20%" height="80%" style="background-color: royalblue">右選單</td>
</tr>
<tr>
<td colspan="3" width="100%" height="10%" style="background-color: red">這是底部</td>
</tr>
</table>
</body>
</html>
github主頁:https://github.com/chenyufeng1991 。歡迎大家訪問!
相關文章
- 用HTML進行網頁佈局HTML網頁
- 使用 REM 進行佈局和適配.REM
- div佈局
- 使用 Grid 進行常見佈局
- 使用rem進行移動端佈局REM
- div佈局小技巧
- DIV+CSS佈局CSS
- HTML————14、HTML 佈局HTML
- 使用BootStrap進行響應式佈局案例boot
- css+div佈局案例CSS
- html的佈局HTML
- 【HTML】07佈局HTML
- 使用Easy UI進行頁面的簡單佈局UI
- display:table佈局總結
- CSS佈局——div居中方法CSS
- div+css佈局注意點CSS
- 【HTML / CSS】使用position自適應佈局HTMLCSS
- html的flex佈局?HTMLFlex
- html5佈局HTML
- 也許table佈局專為form表單佈局而生?ORM
- 移動端網頁固定佈局例項使用媒體查詢rem進行佈局。網頁REM
- div 實現田字格佈局
- 分享div css佈局案例的目的CSS
- CSS佈局–聖盃佈局和雙飛翼佈局以及使用Flex實現聖盃佈局CSSFlex
- html~table、table cell的使用HTML
- HTML 標籤與佈局HTML
- HTML 語義化佈局HTML
- html+css 佈局篇HTMLCSS
- HTML CSS 浮動佈局⑤HTMLCSS
- 前端學習路線(2)——Git使用、DIV+CSS佈局前端GitCSS
- div css左右佈局例項程式碼CSS
- CSS+DIV佈局三種定位方式CSS
- CSS實現三列DIV等高佈局CSS
- 浮動佈局 和 flex佈局Flex
- Flutter 佈局(九)- Flow、Table、Wrap詳解Flutter
- display:table-cell自適應佈局
- HTML 語義化佈局概述HTML
- html5網頁佈局HTML網頁