<!DOCTYPE html>
<html>
<head>
<title>盒模型、BFC</title>
<style type="text/css">
html{
margin: 0px;
padding: 0px;
}
.hidden{
background-color: red;
overflow: hidden;
}
.hidden .child{
background-color: yellow;
height: 100px;
margin-top: 10px
}
.float{
margin-top: 60px;
background-color: red;
}
.float .left{
background-color: yellow;
height: 100px;
width: 50px;
float:left;
}
.float .right {
background-color: blue;
height: 130px;
}
</style>
</head>
<body>
<div class="hidden">
<div class="child">
hidden创建bfc
</div>
</div>
<div class="float">
<div class="left">
BFC不与float重叠 left
</div>
<div class="right">
BFC不与float重叠 right
</div>
</div>
<style type="text/css">
.height{
background-color: red;
margin-top: 30px;
float:left;
}
.height .child{
background-color: pink;
float:left;
font-size:20px;
}
</style>
<div class="height">
<div class="child">
bfc child
</div>
</div>
</body>
</html>
打开App,阅读手记