CSS min-height 属性
描述
min-height属性用于设置元素高度的下限。
可能的值
- length - 任何长度单位。元素的高度不能低于这个距离。
-
percentage - 限制元素高度至少为包含块高度的百分比。
适用对象
除了非替换的内联元素和表格元素外,适用于所有HTML元素。
DOM语法
object.style.minHeight = "50px"
示例
下面是示例 –
<html>
<head>
</head>
<body>
<p style = "width:400px; min-height:200px; border:1px solid red; padding:5px; margin:10px;">
This paragraph is 400px wide and min height is 200px
This paragraph is 400px wide and min height is 200px
This paragraph is 400px wide and min height is 200px
This paragraph is 400px wide and min height is 200px
</p>
<img alt = "logo" src = "https://geek-docs.com/static/logo.png" width = "95" height = "84" />
</body>
</html>
这将产生以下结果-