CSS 尺寸 Dimension

css 尺寸 (Dimension) 属性允许你控制元素的高度和宽度。同样,它允许你增加行间距。


所有CSS 尺寸 (Dimension)属性

"CSS" 列中的数字表示哪个CSS版本定义了该属性 (CSS1 or CSS2)。

属性描述
height设置元素的高度。
line-height设置行高。
max-height设置元素的最大高度。
max-width设置元素的最大宽度。
min-height设置元素的最小高度。
min-width设置元素的最小宽度。
width设置元素的宽度。


示例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>尺寸</title>
    <style>
        .test {
            max-height: 30px;
            background: #eee;
        }
    </style>
</head>
<body>
<div class="test">
    <p>我的最大高度为30</p>
    <p>灰色背景区域以外不是我的领土</p>
</div>
</body>
</html>

链接: https://www.fly63.com/course/4_200