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>