一、元素的浮动

请看下图,当把框 1 向右浮动时,它脱离文档流并且向右移动,直到它的右边缘碰到包含框的右边缘:
浮动与定位 - 图1
再请看下图,当框 1 向左浮动时,它脱离文档流并且向左移动,直到它的左边缘碰到包含框的左边缘。因为它不再处于文档流中,所以它不占据空间,实际上覆盖住了框 2,使框 2 从视图中消失。

如果把所有三个框都向左移动,那么框 1 向左浮动直到碰到包含框,另外两个框向左浮动直到碰到前一个浮动框。
浮动与定位 - 图2
如下图所示,如果包含框太窄,无法容纳水平排列的三个浮动元素,那么其它浮动块向下移动,直到有足够的空间。如果浮动元素的高度不同,那么当它们向下移动时可能被其它浮动元素“卡住”:
浮动与定位 - 图3

  1. 选择器{float:属性值;}
描述
left 元素向左浮动。
right 元素向右浮动。
none 默认值。元素不浮动,并会显示在其在文本中出现的位置。
inherit 规定应该从父元素继承 float 属性的值。

案例讲解:

  • 不设置浮动时元素默认排列效果 ```css

<!doctype html>

box01
box02
box03

这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文 本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本

![image.png](https://cdn.nlark.com/yuque/0/2022/png/22016332/1645955602603-1884a01b-f5d5-41d9-b5e0-411a087d820d.png#clientId=u068b5058-02ef-4&from=paste&id=u1061dd5d&originHeight=406&originWidth=1915&originalType=url&ratio=1&rotation=0&showTitle=false&size=45043&status=done&style=none&taskId=ud4bc8138-a175-4f5d-946c-4143b805e17&title=) - box01左浮动效果css .box01{ /定义box01左浮动/ float:left; } ![image.png](https://cdn.nlark.com/yuque/0/2022/png/22016332/1645955625219-ab15fac2-88a7-47cd-94df-c8ab75d8acd8.png#clientId=u068b5058-02ef-4&from=paste&height=121&id=uf7fd49c0&originHeight=304&originWidth=1915&originalType=url&ratio=1&rotation=0&showTitle=false&size=40124&status=done&style=none&taskId=uff669bc2-28d9-4db7-991f-4ed0ce63e1d&title=&width=765) - box01和box02同时浮动css .box01,.box02{ float:left;
} ![image.png](https://cdn.nlark.com/yuque/0/2022/png/22016332/1645955657968-c7db32d1-c8f6-40ca-aa4d-560777d52aba.png#clientId=u068b5058-02ef-4&from=paste&id=uffdc5855&originHeight=228&originWidth=1920&originalType=url&ratio=1&rotation=0&showTitle=false&size=36174&status=done&style=none&taskId=u7387560e-6e71-4715-8c39-e9b30dbd566&title=) - box01、box02、box03同时左浮动css .box01,.box02,.box03{ float:left;
} ![image.png](https://cdn.nlark.com/yuque/0/2022/png/22016332/1645955673069-21d758bf-7258-4d15-8e00-106cdeaa0c7d.png#clientId=u068b5058-02ef-4&from=paste&id=u796fcefa&originHeight=173&originWidth=1919&originalType=url&ratio=1&rotation=0&showTitle=false&size=34810&status=done&style=none&taskId=u6af06c27-e737-4534-b016-069a9349ec1&title=) <a name="mAnxf"></a> # 二、清除浮动css 选择器{clear:属性值;} | **值** | **描述** | | --- | --- | | left | 不允许左侧有浮动元素(清除左侧浮动的影响) | | right | 不允许右侧有浮动元素(清除右侧浮动的影响) | | both | 同时清除左右两侧浮动的影响 | **案例演示**<br />没有清除左浮动之前<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/22016332/1645955708156-aaf045dc-b5f0-45af-98d1-58d9fc813b86.png#clientId=u068b5058-02ef-4&from=paste&id=u3eb2d11e&originHeight=183&originWidth=1918&originalType=url&ratio=1&rotation=0&showTitle=false&size=34238&status=done&style=none&taskId=uf68112e4-c39d-4b09-8021-c09ba444d61&title=)<br /> 清除左浮动之后css <!doctype html>
box1
box2
box3

这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文 本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本这里是浮动盒子外围文本

![image.png](https://cdn.nlark.com/yuque/0/2022/png/22016332/1645955726926-816b890f-57c1-4ca7-8118-747ec99e38df.png#clientId=u068b5058-02ef-4&from=paste&id=u30c79c2b&originHeight=238&originWidth=1920&originalType=url&ratio=1&rotation=0&showTitle=false&size=35407&status=done&style=none&taskId=u67279533-102e-4543-801e-5db67e394e3&title=)<br /> 需要注意的是,clear属性只能清除元素左右两侧浮动效果。然而在制作网页时,经常会遇到一些特殊的浮动情况。例如,对子元素设置浮动时,如果不对其父元素定义高度,则子元素的浮动会对父元素产生影响。css <!doctype html>
box01
box02
box03

  1. ![image.png](https://cdn.nlark.com/yuque/0/2022/png/22016332/1645955744526-cbd95486-879c-42e1-b386-b32290b1e8bb.png#clientId=u068b5058-02ef-4&from=paste&id=u2a196b14&originHeight=131&originWidth=1914&originalType=url&ratio=1&rotation=0&showTitle=false&size=13927&status=done&style=none&taskId=uf8a86b29-c97f-497a-8419-4dbc0f0806b&title=)<br />由于受到元素浮动的影响,没有设置高度的父元素变成了一条直线,即父元素不能自己适应子元素的高度了。<br />我们知道子元素和父元素为嵌套关系,不存在左右关系,所以使用clear属性并不能清除子元素浮动对父元素的影响。下面总结了3中常用的清除浮动的方式。
  2. <a name="ROIqq"></a>
  3. ## 方法一、使用空标记清除浮动
  4. ```css
  5. <!doctype html>
  6. <html>
  7. <head>
  8. <meta charset="utf-8">
  9. <title>清除浮动</title>
  10. <style type="text/css">
  11. .father{ /*没有对父元素定义高度*/
  12. background:#ccc;
  13. border:1px dashed #999;
  14. }
  15. .box01,.box02,.box03{
  16. height:50px;
  17. line-height:50px;
  18. background:#f9c;
  19. border:1px dashed #999;
  20. margin:15px;
  21. padding:0px 10px;
  22. float:left;
  23. }
  24. .box04{ clear:both;}
  25. </style>
  26. </head>
  27. <body>
  28. <div class="father">
  29. <div class="box01">box01</div>
  30. <div class="box02">box02</div>
  31. <div class="box03">box03</div>
  32. <div class="box04"></div> <!--在浮动元素后添加空标记-->
  33. </div>
  34. </body>
  35. </html>

image.png
父元素被子元素撑开了,即子元素的浮动对父元素的影响已经不存在。
上面方法虽然可以清除浮动,但是无形之中添加了毫无意义的结构元素,工作中不建议使用。

方法二、使用overflow属性清除浮动。

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>清除浮动</title>
  6. <style type="text/css">
  7. .father{ /*没有对父元素定义高度*/
  8. background:#ccc;
  9. border:1px dashed #999;
  10. overflow:hidden;
  11. }
  12. .box01,.box02,.box03{
  13. height:50px;
  14. line-height:50px;
  15. background:#f9c;
  16. border:1px dashed #999;
  17. margin:15px;
  18. padding:0px 10px;
  19. float:left;
  20. }
  21. .box04{ clear:both;}
  22. </style>
  23. </head>
  24. <body>
  25. <div class="father">
  26. <div class="box01">box01</div>
  27. <div class="box02">box02</div>
  28. <div class="box03">box03</div>
  29. </div>
  30. </body>
  31. </html>

image.png
父元素又被其子元素撑开了,即子元素浮动对父元素的影响已经不存在。

方法三、使用after伪对象清除浮动。

(1)必须为需要清除浮动的元素伪对象设置”height:0”,样式,否则该元素比其实际高度高出若干像素。
(2)必须在伪对象中设置content属性,属性值可以为空,如”content “”;”

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>清除浮动</title>
  6. <style type="text/css">
  7. .father{ /*没有对父元素定义高度*/
  8. background:#ccc;
  9. border:1px dashed #999;
  10. }
  11. .father:after{
  12. display:block;
  13. clear:both;
  14. content:"";
  15. visibility:hidden;
  16. height:0;
  17. }
  18. .box01,.box02,.box03{
  19. height:50px;
  20. line-height:50px;
  21. background:#f9c;
  22. border:1px dashed #999;
  23. margin:15px;
  24. padding:0px 10px;
  25. float:left;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="father">
  31. <div class="box01">box01</div>
  32. <div class="box02">box02</div>
  33. <div class="box03">box03</div>
  34. </div>
  35. </body>
  36. </html>

image.png

三、overflow属性

属性值 描述
visible 内容不会被修剪,会呈现在元素框之外(默认值)
hidden 溢出内容会被修剪,并且被修剪的内容是不可见的
auto 在需要时产生滚动条,即自适应所要显示内容
scroll 溢出内容会被修剪,且浏览器会始终显示滚
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>overflow</title>
  6. <style type="text/css">
  7. div{
  8. width:100px;
  9. height:100px;
  10. background:pink;
  11. overflow:visible; /*溢出内容呈现在元素框之外*/
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div>当盒子中的内容超出盒子自身大小的时候,内容就会溢出,如果想要规范溢出内容的显示方式,就需要用到overflow属性,它用于规范元素中溢出内容的显示方式。
  17. </div>
  18. </body>
  19. </html>

image.png

  1. overflow:hidden; /*溢出内容被修剪,不可见

image.png

  1. overflow:auto; /*根据需求产生滚动条*/

image.png

  1. overflow:scroll /*始终显示滚动条*/

image.png

四、元素的定位
position 属性指定了元素的定位类型。

position 属性的五个值:

  • static
  • relative
  • fixed
  • absolute
  • sticky

元素可以使用的顶部,底部,左侧和右侧属性定位。然而,这些属性无法工作,除非是先设定position属性。他们也有不同的工作方式,这取决于定位方法。

static

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. div.static {
  8. position: static;
  9. border: 3px solid #73AD21;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <h2>position: static;</h2>
  15. <p>使用 position: static; 定位的元素,无特殊定位,遵循正常的文档流对象:</p>
  16. <div class="static">
  17. 该元素使用了 position: static;
  18. </div>
  19. </body>
  20. </html>HTML

image.png

fixed

元素的位置相对于浏览器窗口是固定位置。
即使窗口是滚动的它也不会移动:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. p.pos_fixed
  8. {
  9. position:fixed;
  10. top:30px;
  11. right:5px;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <p class="pos_fixed">Some more text</p>
  17. <p><b>注意:</b> IE7 和 IE8 支持只有一个 !DOCTYPE 指定固定值.</p>
  18. <p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p>
  19. </body>
  20. </html>

image.png

relative

相对定位元素的定位是相对其正常位置。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. h2.pos_left
  8. {
  9. position:relative;
  10. left:-20px;
  11. }
  12. h2.pos_right
  13. {
  14. position:relative;
  15. left:20px;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <h2>这是位于正常位置的标题</h2>
  21. <h2 class="pos_left">这个标题相对于其正常位置向左移动</h2>
  22. <h2 class="pos_right">这个标题相对于其正常位置向右移动</h2>
  23. <p>相对定位会按照元素的原始位置对该元素进行移动。</p>
  24. <p>样式 "left:-20px" 从元素的原始左侧位置减去 20 像素。</p>
  25. <p>样式 "left:20px" 向元素的原始左侧位置增加 20 像素。</p>
  26. </body>
  27. </html>

image.png
移动相对定位元素,但它原本所占的空间不会改变。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. h2.pos_top
  8. {
  9. position:relative;
  10. top:-50px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <h2>这是一个没有定位的标题</h2>
  16. <h2 class="pos_top">这个标题是根据其正常位置向上移动</h2>
  17. <p><b>注意:</b> 即使相对定位元素的内容是移动,预留空间的元素仍保存在正常流动。</p>
  18. </body>
  19. </html>

image.png

absolute (字绝父相)

绝对定位的元素的位置相对于最近的已定位父元素,如果元素没有已定位的父元素,那么它的位置相对于:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. h2
  8. {
  9. position:absolute;
  10. left:100px;
  11. top:150px;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <h2>这是一个绝对定位了的标题</h2>
  17. <p>用绝对定位,一个元素可以放在页面上的任何位置。标题下面放置距离左边的页面100 px和距离页面的顶部150 px的元素。.</p>
  18. </body>
  19. </html>

image.png

sticky

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. div.sticky {
  8. position: -webkit-sticky;
  9. position: sticky;
  10. top: 0;
  11. padding: 5px;
  12. background-color: #cae8ca;
  13. border: 2px solid #4CAF50;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <p>尝试滚动页面。</p>
  19. <p>注意: IE/Edge 15 及更早 IE 版本不支持 sticky 属性。</p>
  20. <div class="sticky">我是粘性定位!</div>
  21. <div style="padding-bottom:2000px">
  22. <p>滚动我</p>
  23. <p>来回滚动我</p>
  24. <p>滚动我</p>
  25. <p>来回滚动我</p>
  26. <p>滚动我</p>
  27. <p>来回滚动我</p>
  28. </div>
  29. </body>
  30. </html>


image.png
image.png