Home  >  Article  >  Web Front-end  >  Set the maximum height of a box using CSS

Set the maximum height of a box using CSS

WBOY
WBOYforward
2023-09-03 21:05:031363browse

使用 CSS 设置框的最大高度

The max-height property is used to set the maximum height of a box. The value of the max-height attribute can be a number, a length, or a 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 Set the maximum height of a box using CSS. 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