#min-heightこの属性は、ボックスの最小の高さを設定するために使用されます。 min-height 属性の値には、数値、長さ、またはパーセンテージを指定できます。
例<html> <head> </head> <body> <p style = "width:400px; min-height:150px; border:1px solid blue; padding:5px; margin:10px;"> This paragraph is 400px wide and min height is 150px This paragraph is 400px wide and min height is 150px This paragraph is 400px wide and min height is 150px This paragraph is 400px wide and min height is 150px </p> <img alt = "logo" src = "/css/images/logo.png" width = "100" height = "100" /> </body> </html>
以上がCSSを使用してボックスの最小の高さを設定するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。