码迷,mamicode.com
首页 > 其他好文 > 详细

float浮动定位

时间:2017-07-14 14:50:52      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:type   color   title   one   head   lan   块级元素   box   htm   

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>float浮动定位</title>
<style>
div{
width:100px;
height:100px;
border:1px #000000 solid;
}
.div1{
background:darkred;
}
.div2{
background:green;
/*float:left;
margin-left:10px;*/
/*float浮动的位置只能用margin去调*/
}
.div3{
background:royalblue;
}
/*#box div*/.div1,.div2,.div3{
float:left;/*水平方向定位left\right\none*/
}
/*#box{
width:306px;
}*/
/*三个子元素div的总宽度+border,如果宽度不够,子元素浮动是上不去的*/
.text{
width:400px;
height:200px;
}
</style>
</head>
<body>
<h1>你们好吗</h1>
<!--<div id="box">-->
<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>
<!--</div>-->
<h1 style="clear:both"></h1><!--从这开始清除浮动,别对下面的内容有影响,用任何块级元素都可以。或者给浮动的元素加父元素,给父元素加宽高,因为外面的父元素不会浮动起来,如上-->
<div class="text">这节课我们学习浮动的定位,如果用了浮动就会对下面的元素产生影响,如果不想有影响就用以上两种方式清除浮动</div>
</body>
</html>

float浮动定位

标签:type   color   title   one   head   lan   块级元素   box   htm   

原文地址:http://www.cnblogs.com/benbenma/p/7169579.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!