max-height プロパティは、ボックスの最大高さを設定するために使用されます。 max-height 属性の値には、数値、長さ、またはパーセンテージを指定できます。
<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>
以上がCSS の max-height プロパティの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。