css基础-2 div布局
2021-06-19 21:02
YPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
标签:class 头部 css基础 margin 元素 多个 span 标签 解释
div布局
.toubu {width:100%;height:100px;background:aqua;}
.zhuti {width:80%;height:600px;background:red;float:left;}
.left {width:20%;height:600px;background:green;float:left}
.dibu {width:100%;height:200px;background:blue;clear:both}
margin:0px;>
解释:
1.div标签属于块级元素,自己会独占一行,要想让多个div从左到右排列,需要用到 "浮动"属性。
2.最后一个div需要清除左浮动效果
clear:both;
属性意思为:不允许有浮动对象
3.设置div头部的时候,头部会离浏览器最上边默认或有8px的间距。我们可以通过外边距标签,将8px的空白缝隙取消。
style=margin:0px;
css基础-2 div布局
标签:class 头部 css基础 margin 元素 多个 span 标签 解释
原文地址:http://www.cnblogs.com/pangbing/p/7191198.html