CSS 之尺寸(Dimension)
一、属性
Properties 属性 | Description 简介 |
---|---|
width | 检索或设置对象的宽度 |
min-width | 设置或检索对象的最小宽度 |
max-width | 设置或检索对象的最大宽度 |
height | 检索或设置对象的高度 |
min-height | 设置或检索对象的最小高度 |
max-height | 设置或检索对象的最大高度 |
二、示例
<!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>