최대 너비 속성은 상자의 최대 너비를 설정하는 데 사용됩니다. 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>