webveuje/csspress/float.md
2021-04-01 09:06:07 +08:00

379 lines
12 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 浮动float
## 为什么需要浮动
- 最初浮动是为了像word有文字环绕图片嵌入的功能出现的
![image-20210120091803284](E:\web\lessons\课件\csspress\float.assets\image-20210120091803284.png)
- 让多个块级元素水平排列成一行
![image-20210120092034942](E:\web\lessons\课件\csspress\float.assets\image-20210120092034942.png)
- 实现两个块级盒子的左对齐和右对齐
![image-20210120092428804](E:\web\lessons\课件\csspress\float.assets\image-20210120092428804.png)
## 浮动的本质
1. 浮动的包裹性
抛开浮动的破坏性先不谈浮动就是个带有方位的display:inline-block的属性。
display:inline-block 某种意义上的作用就是包裹,浮动也有类似的效果
但是 float和display:inline-block 无法完全等同
原因:
- float可以自定义方向从左往右或从右往左 inline-block只有从左到右一个水平排列的方向
- float会使周围文字环绕元素 inline-block不会
2. 浮动的破坏性
flex破坏性指的是父元素高度塌陷 。
把一张图片放在div里显示
```
<div class="outer">
<img src="./images/2.jpg" width="150px" height="100px">x
</div>
```
```
.outer{
width: 400px;
background-color: lightblue;
}
```
![image-20210120160447090](E:\web\lessons\课件\csspress\float.assets\image-20210120160447090.png)
这时候如果给图片加上float:left ,父元素蓝色框就只有x占据的宽度
```
.outer{
width: 400px;
background-color: lightblue;
float:left;
}
```
![image-20210120160552069](E:\web\lessons\课件\csspress\float.assets\image-20210120160552069.png)
这时候如果把x去掉 那么父元素(蓝色框) 就直接没了
## 探究float实现文字环绕
css设计师在设计float属性的时候定义了float 两个特性:
* “破坏文档流”,使父元素高度塌陷
* 禁止行框盒子与浮动元素进行重叠
所以在文字环绕图片的过程中 第一步破坏文档流使父元素高度塌陷 这时候文字标签跟图片在一个水平线上。然而还没有出现环绕的效果 这时候 第二个特征也就是float元素禁止与行框盒子发生重叠有人认为这是float与绝对定位最大的区别之一
![image-20210325154909010](E:\web\lessons\课件\csspress\float.assets\image-20210325154909010.png)
## float 使用
```
float:left 左浮动
float:right 右浮动
```
float:left 实现块级元素水平排列
![image-20210120103840173](E:\web\lessons\课件\csspress\float.assets\image-20210120103840173.png)
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
margin:0;
padding: 0;
}
.box{
width: 1000px;
height: 300px;
background: gold;
margin: 20px;
}
.box1{
/* width:60px;
height: 60px; */
background: red;
/* background: rgba(255, 0, 0, 0.363); */
/* float: left; */
}
.box2{
width: 120px;
height:80px;
background: gray;
border: 1px solid pink;
/* float:right */
float: left;
}
.a{
/* width: 70px;
height: 70px;
border: 1px solid blue;
background: pink; */
clear: right;
}
</style>
</head>
<body>
<div class="box">
<div class="box1">asaaaa</div>
<div class="box2"></div>
<div class="box2"></div>
<div class="box2"></div>
<div class="box2"></div>
<div class="box2"></div>
<div class="box2"></div>
</div>
</body>
</html>
```
## 清除浮动
```
clear:left(清除左浮动)/right(清除右浮动)/both(清除左浮动+右浮动)
```
哪边不允许有浮动元素clear就是对应方向的值两边都不允许就是`both`
方案1给需要清浮动的元素加clear属性
```
.box4{
width: 120px;
height:80px;
background: blue;
border: 1px solid pink;
clear: left;
}
```
方案2
html:
```
<div class="box">
<div class="box1">asaaaa</div>
<div class="box2"></div>
<div class="box2">4</div>
<div class="box2">5</div>
<!-- <div class="box2" style="height: 180px;">6</div> -->
<div class="blank"></div>
<div class="box4"></div>
</div>
```
css:
```
.blank{
clear: left;
}
```
方案3使用伪元素清除浮动
css:
```
.boxes:after {
content: '.';
height: 0;
display: block;
clear: both;
}
```
html:
```
<div class="box">
<div class="boxes clearfix">
<div class="box1">asaaaa</div>
<div class="box2"></div>
<div class="box2">4</div>
<div class="box2 blankdiv">5</div>
<!-- <div class="box2" style="height: 180px;">6</div> -->
<div class="blank"></div>
</div>
<div class="box4"></div>
</div>
```
方案4overflow 清除浮动
html
```
<div class="box">
<div class="boxes clearfix">
<div class="box1">asaaaa</div>
<div class="box2"></div>
<div class="box2">4</div>
<div class="box2 blankdiv">5</div>
<!-- <div class="box2" style="height: 180px;">6</div> -->
<div class="blank"></div>
</div>
<div class="box4"></div>
</div>
```
css:
```
.boxes{
overflow: auto;
}
```
# 其他内容
<div style="width: 200px;text-align: justify;background: yellow">
<span>这里有很多文字,且要超出一行且要超出一行且要超出一行</span>
<span style="float: right;color:blue">更多</span>
</div>
<div style="width: 200px;text-align: justify;background: yellow">
<span style="float: right;color:blue">更多</span>
<span>这里有很多文字,且要超出一行且要超出一行且要超出一行</span>
</div>
浮动元素参考的是离他最近的行框盒子
下面这段代码 有什么效果?为什么
```
<div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px;clear:left">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
</div>
```
<div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px;clear:left">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:gold;float:left;margin-left:20px;margin-top:10px">1</div>
<div style="width:40px;height:40px;background:red;margin-left:20px;margin-top:10px">1</div>
<p>
hoho
</p>
</div>
效果如上面的实例所示,会将里面的小方块分成两行
原因在行内样式中第三个元素被赋予clear:left (清除左浮动),这个时候根据标准 他不能跟前面浮动的元素相邻,也就是不能跟前面的元素做朋友了 要分开去下一行 只能换行咯
但是标准没有规定不能跟下一个元素做朋友,所以后面的元素依然可以依据左浮动的规则继续靠在一起.
因为第一行和第二行都保持了浮动的特性所以父级元素的高度是0再最后面插入文本的时候会飘到第一行去,如果是文字的话因为浮动元素不能和行框元素发生重叠,所以文字会出现在最右侧 而且最后定义的盒子里面的字会跟盒子本体分离
因为盒子占了空间所以hoho被挤到下一行的右边去了
看完了上面的例子再来简单了解下clear的四个属性分别是none(默认,就是没有)left清左浮动right清右浮动以及我们最常用的both(全清)。作者这里给出了clear的基本使用方式就是clear:both。left和right属性根本没有软用让CSS自己判断就好了因为不可能有一个元素既是left又是right浮动的因此无需考虑是清左浮动还是右浮动全清就完事了。
由于clear只能确保和前面的元素发生关系因此我们最常使用的是after伪类清浮动而不是before因为before生成的元素根本没法和后面的元素交流clear的事情。最后我们放上我们最喜欢使用的after伪类清浮动的方法注意clear属性只有块级元素才有效而伪类的默认属性是内联值不要忘了display:block声明。
## 通过BFC 彻底清除浮动
BFC是block formatting context的缩写中文名为“块级格式化上下文”。前面也多次提到了这个听起来十分拗口的属性那么CSS设计这个属性的初衷是什么呢
记住一句话拥有BFC特性的元素会形成类似“结界”的封闭内部空间该元素内部的元素以及该元素本身都不会影响外部元素的表现。要理解这句话还得通过一些例子来证明在举例证明之前我们必须得知道一件事就是CSS规定了哪些属性可以生成BFC属性常见的情况如下
* flaot 不为none的元素
* overflow为 auto scroll 或hideen 的元素
* display的值为inline-blocktable-cell或table-caption的元素
* position的值不为relative和static
<div display="inline-block">
<div style="float: left;">我的父元素有BFC,我是左浮动</div>
<div style="float: right;">我的父元素有BFC,我是右浮动</div>
</div>
![image-20210325162113569](E:\web\lessons\课件\csspress\float.assets\image-20210325162113569.png)
<div>
<div style="float: left;">我的父元素有BFC,我是左浮动</div>
<div style="float: right;">我的父元素有BFC,我是右浮动</div>
</div>