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

CSS max-height property

PHPz
PHPzforward
2023-08-29 17:09:021378browse

CSS 最大高度属性

max-height property is used to set the maximum height of the box. The value of the max-height attribute can be a number, length, or percentage.

Example

<html>
   <head>
   </head>
   <body>
      <p style = "width:400px; max-height:10px; border:2px solid green; padding:10px; margin:15px;">
         This paragraph is 400px wide and max height is 10px
         This paragraph is 400px wide and max height is 10px
         This paragraph is 400px wide and max height is 10px
         This paragraph is 400px wide and max height is 10px
      </p>
      <br>
      <br>
      <br>
      <img alt = "logo" src="/css/images/logo.png" width = "210" height = "100" />
   </body>
</html>

The above is the detailed content of CSS max-height 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