1020人加入学习
(2人评价)
Web前端第二季(CSS)

制作完成于2018年6月6日 CSS2.0,

价格 免费
<!DOCTYPE html>

<head>
    <meta charset="UTF-8">
    <title>浮动</title>
    <style type="text/css">
        div {
            width: 300px;
            height: 300px;
        }

        .one {
            background-color: red;
            float: left;
            /* none | right | left */
        }

        .two {
            width: 350px;
            background-color: green;
            float: left;
        }

        .three {
            background-color: blue;
            float: left;
        }
    </style>
</head>

<body>
    <div class="one"></div>
    <div class="two"></div>
    <div class="three"></div>
</body>

</html>

 

[展开全文]

授课教师

SiKi学院老师

课程特色

下载资料(1)
视频(47)