17div元素和布局

来源:互联网 发布:人工智能 手机应用 编辑:程序博客网 时间:2024/06/10 11:09
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>17div元素与布局</title>
</head>
<body>
<p>我是块元素,会换行</p> 演示<a href="">baidu </a>
<div style="width:100%;height:708px">
<div style="background:green; width:100% ;height:10%">我是div通用块元素(标题)</div>
<div style="background:#6954ED; width:20% ;height:80%;float:left">导航栏</div>
<div style="background:blue;width:80%;height:80%;float:left">iframe内联框架</div>
<div style="background:red;width:100%;height:10%;float:left">尾部</div>
</div>
</body>
</html>
原创粉丝点击