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