CSS-浮动1

来源:互联网 发布:2017年张北云计算招聘 编辑:程序博客网 时间:2024/06/07 05:42
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>float</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        div:first-child{
            width: 100px;
            height: 400px;
            background-color: red;
            float: left;
        }
        div:nth-child(2){
            width: 200px;
            height: 200px;
            background-color: blue;
            float: left;
        }
        div:last-child{
            width: 300px;
            height: 300px;
            background-color: green;
            float: left;    
            /*clear: both;*/
        }
    </style>
</head>
<body>
    <div></div>
    <div></div>
    <div></div>
</body>
</html>
原创粉丝点击