SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .a {
            width: 300px;
            height: 300px;
            background-color: pink;
        }
        
        .b {
            float: left;
            background-color: red;
            width: 100px;
            height: 100px;
        }
        
        .c {
            float: right;
            background-color: yellow;
            width: 100px;
            height: 100px;
        }
        
        .d {
            float: left;
            background-color: black;
            width: 100px;
            height: 100px;
        }
        
        .e {
            float: left;
            background-color: black;
            width: 100px;
            height: 100px;
        }
        
        .f {
            float: left;
            background-color: white;
            width: 100px;
            height: 100px;
        }
        
        .g {
            float: left;
            background-color: black;
            width: 100px;
            height: 100px;
        }
        
        .h {
            float: left;
            background-color: green;
            width: 100px;
            height: 100px;
        }
        
        .i {
            float: left;
            background-color: black;
            width: 100px;
            height: 100px;
        }
        
        .j {
            float: left;
            background-color: blue;
            width: 100px;
            height: 100px;
        }
    </style>
</head>

<body>
    <div class="a">
        <div class="b"></div>
        <div class="c"></div>
        <div class="d"></div>
        <div class="e"></div>
        <div class="f"></div>
        <div class="g"></div>
        <div class="h">绿</div>
        <div class="i"></div>
        <div class="j"></div>
    </div>
</body>

</html>