您的位置:首页 > Web前端 > HTML5

html5-div布局

2017-09-09 10:00 204 查看
<!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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: