Heim > Artikel > Web-Frontend > CSS-Eigenschaft „max-height“.
Mit der Eigenschaft
max-height wird die maximale Höhe der Box festgelegt. Der Wert des Attributs „max-height“ kann eine Zahl, eine Länge oder ein Prozentsatz sein.
<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>
Das obige ist der detaillierte Inhalt vonCSS-Eigenschaft „max-height“.. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!