Day8画盒子

使用合适的选择器画一个盒子
image

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>画盒子</title>
    <style>
        .redbox{
            width: 100px;
            height: 100px;
            background-color: red;
        }
        .bulebox{
            width: 200px;
            height: 200px;
            background-color: blue;
        }
    </style>
</head>
<body>
    <div class="redbox">div1</div>
    <div class="bulebox">div2</div>
</body>
</html>

image

posted @ 2025-10-30 16:13  冰涿  阅读(8)  评论(0)    收藏  举报