SOURCE

console 命令行工具 X clear

                    
>
console
    <div class="box">
        <span class="item"></span>
        <span class="item"></span>
    </div>

    
        body {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .box {
            display: flex;
            width: 200px;
            height: 200px;
            border: 2px solid #ccc;
            border-radius: 10px;
            padding: 20px;
            justify-content: space-around;
            align-items: center;
        }
        
        .item {
            display: block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #666;
        }