闭包
一个拥有许多变量和绑定了这些变量的环境的表达式(通常是一个函数),因而这些变量也是该表达式的一部分。
BFC (block formatting context) 及块级格式化上下文,从样式上看,具有 BFC 的元素与普通的容器没有什么区别,从功能上看,BFC相当于构建了一个密闭的盒子模型,在BFC中的元素不受外部元素的影响;
以下情况都会使元素产生BFC
由于浮动元素脱离了文档流,普通盒子是无法包裹住已经浮动的元素;父级元素的高度为0;
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* { box-sizing: border-box; }
.outer {
background-color: #ccc;
width: 200px;
}
.outer div{
width: 100px;
margin: 10px 20px;
background-color: red;
width: 100px;
height: 100px;
}
</style>
</head>
<body >
<div class="outer ">
<div style="float: left;"></div>
</div>
</body>
</html>
当子元素浮动 父级获取不到浮动元素的高度,造成高度塌陷
当父元素转变为BFC时,浮动元素被包裹住:
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* { box-sizing: border-box; }
.outer {
background-color: #ccc;
width: 200px;
overflow: hidden; //转变为BFC
}
.outer div{
width: 100px;
margin: 10px 20px;
background-color: red;
width: 100px;
height: 100px;
}
</style>
</head>
<body >
<div class="outer ">
<div style="float: left;"></div>
</div>
</body>
</html>
当一个元素浮动,后面的元素没浮动,那么后面的元素就会与浮动元素发生重叠
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* { box-sizing: border-box; }
.outer {
background-color: #ccc;
width: 200px;
overflow: hidden;
}
.outer div{
width: 100px;
margin: 10px 20px;
background-color: red;
width: 100px;
height: 100px;
}
</style>
</head>
<body >
<div class="outer ">
<div style="float: left;"></div>
<div ></div>
</div>
</body>
</html>
后一个元素 与前一个浮动元素发生重叠
根据BFC不与浮动元素重叠的特性,为没有浮动的元素创建BFC环境
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* { box-sizing: border-box; }
.outer {
background-color: #ccc;
width: 200px;
overflow: hidden;
}
.outer div{
width: 100px;
margin: 10px 20px;
background-color: red;
width: 100px;
height: 100px;
}
</style>
</head>
<body >
<div class="outer ">
<div style="float: left;"></div>
<div style="overflow: hidden;"></div>
</div>
</body>
</html>
边距重叠分为两种情况
当 父级没有
这五个条件时,子元素的上下边距会和父级发生重叠
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* { box-sizing: border-box; }
.outer {
background-color: #ccc;
width: 200px;
}
.outer div{
width: 100px;
margin: 10px 20px;
background-color: red;
width: 100px;
height: 100px;
}
</style>
</head>
<body >
<div class="outer ">
<div></div>
</div>
</body>
</html>
解决办法:
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* { box-sizing: border-box; }
.outer {
background-color: #ccc;
width: 200px;
/*padding: 1px;*/ 加padding
/*border: 1px solid yellow;*/ 加border
/*display: inline-block;*/ 内联块
/*overflow: hidden;*/ BFC
}
.clearfix:after{ 清除浮动
content: '';
display: table;
clear:both;
}
.outer div{
width: 100px;
margin: 10px 20px;
background-color: red;
width: 100px;
height: 100px;
}
</style>
</head>
<body >
<div class="outer clearfix">
<div></div>
</div>
</body>
</html>
1.将两个元素浮动 2.将两个元素display:inline-block
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* { box-sizing: border-box; }
.outer {
background-color: #ccc;
width: 200px;
overflow: hidden;
}
.outer div{
width: 100px;
margin: 10px 20px;
background-color: red;
width: 100px;
height: 100px;
/*下面两种方式*/
float: left;
display: inline-block;
}
</style>
</head>
<body >
<div class="outer ">
<div ></div>
<div ></div>
</div>
</body>
</html>