max-height
基本特性
初始值:
none
适用于:
所有元素(except non-replaced inline elements and table elements )
继承性:
无
百分比:
根据包含元素(refer to height of containing block )
媒体:
visual
版本:
CSS2
兼容性:
基本语法
max-height : none | length
语法取值
auto :� 默认值。无最大高度限制。 length :� 由浮点数字和单位标识符组成的长度值 | 或者百分数。不可为负数。请参阅 长度单位。
使用说明
设置或检索对象的最大高度。 如果此属性的值小于 min-height 属性的值,将会被自动转设为 min-height 属性的值。 对应的脚本特性为 maxHeight
代码示例
p { max-height: 200%; }
返回顶部