码迷,mamicode.com
首页 > Web开发 > 详细

第二周-3:CSS核心技术

时间:2016-08-27 23:22:35      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

(1)神奇的float;

 

技术分享技术分享技术分享

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        div{
            height: 100px;
            float: left;
        }
        .container{
            border:1px solid blue;
            height: 300px;
            width: 250px;
            background-color: antiquewhite;
        }
        .first{
            background: red;
        }
        .second{
            background: cyan;
        }
        .third{
            background: chartreuse;
        }
        .n{
            background: darkorchid;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="first">
            第一个div
        </div>
        <div class="second">
            第二个div
        </div>
        <div class="third">
            第三个div
        </div>
        <div class="n">
            第n个div
        </div>
    </div>
</body>
</html>

(2)定位position;

 技术分享

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        div{
            height: 100px;
            width: 100px;
        }
        .rel{
            background: red;
            display: inline-block;
        }
        .abs{
            background: green;
            display: inline-block;
        }
    </style>
</head>
<body>
    <div class="rel"></div>
    <div class="abs"></div>
</body>
</html>

技术分享技术分享技术分享技术分享技术分享

 

第二周-3:CSS核心技术

标签:

原文地址:http://www.cnblogs.com/zzjeny/p/5813895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!