浮动与clear测试

Posted yxfyg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了浮动与clear测试相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>浮动</title>
    </head>
    <body>
        <div style="width: 200px; height: 200px; background-color: red; float: left;"></div>
        <div style="width: 200px; height: 200px; background-color: blue; float: left;"></div>
        <div style="width: 200px; height: 200px; background-color: yellow; float: left;"></div>
        <div style="clear: left; width: 500px; height: 500px; background-color: black;"></div>
        <div style="width: 200px; height: 200px; background-color: gold; float: left;"></div>
        <div style="width: 200px; height: 200px; background-color: green; float: left;"></div>
    </body>
</html>

技术图片

 

以上是关于浮动与clear测试的主要内容,如果未能解决你的问题,请参考以下文章

浮动(float)与清除浮动(clear)

Float浮动与clear

CSS清浮动处理(Clear与BFC)

清除浮动clear/BFC

clear清除浮动最佳实践和BFC清除浮动

clear-fix清除浮动的两种写法