1. 程式人生 > >html5-div布局

html5-div布局

div charset type lan wid 方式 clear title 頭部

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>div布局-div與css搭配,不建議內部style方式</title>
</head>
<body>
<div style="width: 100%;height: 708px">
<div style="background: green;width: 100%;height: 10%">頭部</div>
<div style="background: #f8f8f8;width: 20%;height: 80%;float: left;">導航欄</div>
<div style="background: #f0f0f0;width: 80%;height: 80%;float: left;">我是ifrmae框架</div>
<div style="background: red;width: 100%;height: 10%;clear: left">尾部</div>
</div>
</body>
</html>

html5-div布局