CSS-浮动2

来源:互联网 发布:2017年张北云计算招聘 编辑:程序博客网 时间:2024/06/03 11:15
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>float</title>
    <style>
        .outer{
            border: 1px solid red;
            /*background-color: blue;*/
            overflow: hidden;
        }
        .inner{
            width: 100px;
            height: 100px;
            background-color: red;
            margin: 10px;
            float: left;
        }
        .other{
            width: 200px;
            height: 100px;
            background-color: gold;
            /*clear: both;*/
        }
    </style>
</head>
<body>
    <div class="outer">
        <div class="inner"></div>
        <div class="inner"></div>
        <div class="inner"></div>
    </div>
    <div class="other"></div>
</body>
</html>
原创粉丝点击