css min-height property


  Translation results:

min

abbr.minute minute;minuto (Portuguese or Spanish=minute) (Portuguese or Spanish) minute;minority minority;miniature small

height

英[haɪt]   美[haɪt]   

n.Height; height, altitude; plateau; peak, vertex

plural: heights

css min-height propertysyntax

Function:Set the minimum height of the element.

Description: This attribute value will set a minimum limit on the height of the element. Therefore, the element can be taller than the specified value, but cannot be shorter than it. Negative values ​​are not allowed.

Note: All major browsers support the min-height attribute.

css min-height propertyexample

<html>
<head>
<style type="text/css">
p
{
min-height: 100px
}
</style>
</head>
<body>

<p>这是一些文本。这是一些文本。这是一些文本。
这是一些文本。这是一些文本。这是一些文本。
这是一些文本。这是一些文本。这是一些文本。
这是一些文本。这是一些文本。这是一些文本。
这是一些文本。这是一些文本。这是一些文本。</p>

<img src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" />

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance

Popular Recommendations

Home

Videos

Q&A