Home  >  Article  >  Web Front-end  >  CSS max-width property

CSS max-width property

WBOY
WBOYforward
2023-08-22 10:21:02898browse

CSS max-width property

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, a length, or a 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 CSS max-width property. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete