The max-width attribute is used to set the maximum width of a box. The value of the max-width attribute can be a number, length, or percentage.
<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>
The above is the detailed content of Set the maximum width of a box using CSS. For more information, please follow other related articles on the PHP Chinese website!