max-height property is used to set the maximum height of the box. The value of the max-height attribute can be a number, length, or percentage.
<html> <head> </head> <body> <p style = "width:400px; max-height:10px; border:2px solid green; padding:10px; margin:15px;"> This paragraph is 400px wide and max height is 10px This paragraph is 400px wide and max height is 10px This paragraph is 400px wide and max height is 10px This paragraph is 400px wide and max height is 10px </p> <br> <br> <br> <img alt = "logo" src="/css/images/logo.png" width = "210" height = "100" /> </body> </html>
The above is the detailed content of CSS max-height property. For more information, please follow other related articles on the PHP Chinese website!