第二周-3:CSS核心技术

Posted zzjeny

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第二周-3:CSS核心技术相关的知识,希望对你有一定的参考价值。

(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核心技术的主要内容,如果未能解决你的问题,请参考以下文章

python核心编程(第二周)

《实时控制软件》第二周作业

第二周

学习进度(第二周)

第二周学习进度条

ARTS第二周