1、浮动定义

作用:以前,浮动是用来做图文环绕的,现在主要是用来做布局,将块级元素完美的在一行中进行显示。
增加一个浮层来放置内容。
float属性定义元素在那个方向浮动,任何元素都可以浮动

  1. float: left;
  2. left 元素向左浮动
  3. right 元素向右浮动

浮动的原理:
浮动以后使元素脱离了文档流
浮动只有左右浮动,没有上下浮动

2、元素向左浮动

脱离文档流以后,元素相当于在页面上增加一个浮层来放置内容。此时可以理解为有两层页面,一层是底层的原页面,一层是脱离文档流的上层页面,所以会出现折叠现象。如下图1是未脱离文档流的情况,下图2是box脱离了文档流container未脱离文档流的情况:
image.pngimage.png

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>浮动</title>
  6. <style>
  7. .box{
  8. float: left;
  9. width: 200px;
  10. height: 200px;
  11. background-color: aqua;
  12. }
  13. .container{
  14. float: left;
  15. width: 380px;
  16. height: 380px;
  17. background-color: antiquewhite;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="box">box</div>
  23. <div class="container">container</div>
  24. </body>
  25. </html>

3、元素向右浮动

如下图:
image.png

4、所有元素向左浮动

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>浮动</title>
  6. <style>
  7. div{
  8. float: left;
  9. }
  10. .box{
  11. width: 200px;
  12. height: 200px;
  13. background-color: aqua;
  14. }
  15. .container{
  16. width: 380px;
  17. height: 380px;
  18. background-color: antiquewhite;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="box">box</div>
  24. <div class="container">container</div>
  25. </body>
  26. </html>

image.png

5、img标签浮动实现去除原样式的间隙

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>浮动</title>
  6. <style>
  7. img{
  8. float: left;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <img src="./1.jpg">
  14. <img src="./1.jpg">
  15. </body>
  16. </html>

image.png

6、ul标签浮动实现去除原样式的竖向摆放,实现横向摆放

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>浮动</title>
  6. <style>
  7. ul li{
  8. float: left;
  9. margin: 0px 22px 0px 0px;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <ul>
  15. <li> <a href="#">导航一</a> </li>
  16. <li> <a href="#">导航二</a> </li>
  17. <li> <a href="#">导航三</a> </li>
  18. </ul>
  19. </body>
  20. </html>

image.png

7、浮动副作用

浮动副作用:当元素浮动后,该元素会脱离文档流,会向左或者向中浮动,浮动元素会造成父元素高度塌陷,后续元素会受到影响。
a、如下父元素高度塌陷demo:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>父元素高度塌陷demo</title>
  6. <style>
  7. .container{
  8. width: 600px;
  9. background-color: gray;
  10. }
  11. .box{
  12. width: 100px;
  13. height: 100px;
  14. float: left;
  15. margin: 5px;
  16. }
  17. .box1{
  18. background-color: rebeccapurple;
  19. }
  20. .box2{
  21. background-color: burlywood;
  22. }
  23. .box3{
  24. background-color: blue;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div>
  30. <div class="container">
  31. <div class="box box1"></div>
  32. <div class="box box2"></div>
  33. <div class="box box3"></div>
  34. </div>
  35. </div>
  36. </body>
  37. </html>

效果如下图,box浮动后container容器不见了:
image.png
b、后续元素会受到影响:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>后续元素会受到影响demo</title>
  6. <style>
  7. .container{
  8. width: 600px;
  9. background-color: gray;
  10. }
  11. .box{
  12. width: 100px;
  13. height: 100px;
  14. margin: 5px;
  15. }
  16. .boxfloatleft{
  17. float: left;
  18. }
  19. .box1{
  20. background-color: rebeccapurple;
  21. }
  22. .box2{
  23. background-color: burlywood;
  24. }
  25. .box3{
  26. background-color: blue;
  27. }
  28. .textbox{
  29. background-color: green;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div>
  35. <div class="container">
  36. <div class="box box1 boxfloatleft"></div>
  37. <div class="box box2 boxfloatleft"></div>
  38. <div class="box box3 boxfloatleft"></div>
  39. <div class="box textbox"></div>
  40. </div>
  41. </div>
  42. </body>
  43. </html>

如下图,textbox容器并没有按预期出现:
image.png

8、清除浮动

清除浮动的方案有以下四种:
1、父元素设置高度,实际开发比较少用。
2、受影响的元素增加clear属性,与第3个一起用,是最常用的。
3、overflow清除浮动,与第2个一起用,是最常用的。
4、伪对象方式,需要添加一个::after样式,一般也比较少用。
示例代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>清除浮动</title>
  6. <style>
  7. .container{
  8. width: 600px;
  9. /* 方式1:父元素设置高度,但这种方法不太好,因为实际开发中一般是不知道box的高度的 */
  10. /* height: 600px; */
  11. /* 方式3:父元素同时添加overflow和clear,是用得最多的方式 */
  12. overflow: hidden;
  13. clear: both;
  14. background-color: gray;
  15. }
  16. .container::after{
  17. /* 方式4:伪对象方式,需要添加一个::after样式,一般也比较少用。 */
  18. content: "";
  19. display: block;
  20. clear: both;
  21. }
  22. .box{
  23. width: 100px;
  24. height: 100px;
  25. margin: 5px;
  26. }
  27. .boxfloatleft{
  28. float: left;
  29. }
  30. .box1{
  31. background-color: rebeccapurple;
  32. }
  33. .box2{
  34. background-color: burlywood;
  35. }
  36. .box3{
  37. background-color: blue;
  38. }
  39. .textbox{
  40. background-color: green;
  41. /* 方式2:给受影响的元素增加clear属性,是用得最多的方式 */
  42. /* left是清除左浮动,right是清除右浮动,both是清除左右浮动 */
  43. clear: both;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <div>
  49. <div class="container">
  50. <div class="box box1 boxfloatleft"></div>
  51. <div class="box box2 boxfloatleft"></div>
  52. <div class="box box3 boxfloatleft"></div>
  53. <div class="box textbox"></div>
  54. </div>
  55. </div>
  56. </body>
  57. </html>

如下图,container容器、box容器、textbox容器都已经按预期出来了:
image.png