Home > Article > Web Front-end > Set the maximum height of a box using CSS
The max-height property is used to set the maximum height of a box. The value of the max-height attribute can be a number, a length, or a 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 Set the maximum height of a box using CSS. For more information, please follow other related articles on the PHP Chinese website!