87
A
回答
227
clear:both
使元素落在文檔中的任何浮動元素之前。
您還可以使用clear:left
或clear:right
使其僅落在已向左或向右浮動的元素的下方。
+------------+ +--------------------+
| | | |
| float:left | | without clear |
| | | |
| | +--------------------+
| | +--------------------+
| | | |
| | | with clear:right |
| | | (no effect here, |
| | | as there is no |
| | | float:right |
| | | element) |
| | | |
| | +--------------------+
| |
+------------+
+---------------------+
| |
| with clear:left |
| or clear:both |
| |
+---------------------+
20
只需添加到RichieHindle的回答,請Floatutorial,其中詳細介紹瞭如何CSS浮動和結算工程。
2
當您使用float不帶寬度時,該行中仍有一些空格。要阻止此空間,您可以在下一個元素中使用clear:both;
。
相關問題
- 1. div重疊頁腳,儘管style =「clear:both」?
- 2. 什麼是最適合用於「clear:both」的HTML5元素?目的是什麼?
- 3. svn:eol和svn:eol-style有什麼區別
- 4. style type =「text/css」...還有什麼?
- 5. 是否有理由爲什麼CSS「clear:both」對<a>標籤不起作用?
- 6. 爲什麼存在-ms-overflow-style?
- 7. webpack中「pragma style」的含義是什麼?
- 8. 有沒有什麼場合可以使用<style>而不是css文件?
- 9. 爲什麼我的list-style-image沒有顯示出來?
- 10. 爲什麼list-style-type不起作用?沒有顯示任何內容
- 11. 在SDEF中聲明各種<accessor style>標籤有什麼作用?
- 12. meta,link和style元素在文檔的主體中有什麼用途?
- 13. <! - 在<style>聲明 - 它有什麼不同的用途和含義?
- 14. 爲什麼style命令在noscript部分內不起作用?
- 15. 爲什麼style-loader用作Webpack的ExtractSass插件的後備?
- 16. <style>不適用,我不知道爲什麼
- 17. 爲什麼在html中使用style-attribute不好?
- 18. Button.Style和Style.Trigger之間Style對象的用法是什麼?
- 19. Table style in table style inherit mess
- 20. 有沒有什麼辦法可以使Style適用於所有項目而不必聲明屬性
- 21. linkbutton style
- 22. list style menu wordpress style css
- 23. 爲什麼HTML中的<style>標籤具有類型屬性?
- 24. Conditinal ng-class style適用於所有div
- 25. <style type =「text/javascript」>是否有用?
- 26. [,]有什麼用?
- 27. 給div一個style ='height:100%'是什麼意思?
- 28. 什麼是所選鏈接背景顏色的Android Style屬性?
- 29. _POST $爲什麼不能retieve <img style="">
- 30. 什麼可能導致td元素忽略style =「width:300px」?
+1原理圖答案。很好的解釋 – 2009-06-18 11:34:08
注意FLOAT BUG! http://www.positioniseverything.net/explorer/floatIndent.html – Jason 2009-07-22 23:19:34