1. 主页
  2. 文档
  3. CSS
  4. 盒模型
  5. width和height属性详解

width和height属性详解

<!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>
        .box1 {
            /* 宽度省略掉,由于div是块级元素,能够自动撑满 */
            height: 100px;
            background-color: red;
        }
        .box2 {
            /* 高度省略掉,能够被内容自动撑起来 */
            width: 200px;
            background-color: blue;
            color: white;
        }
    </style>
</head>

<body>
    <div class="box1"></div>

    <div class="box2">
        文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字
    </div>
</body>

</html>
这篇文章对您有用吗?

我们要如何帮助您?