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

Set the minimum height of a box using CSS

WBOY
WBOYforward
2023-09-08 08:37:021146browse

使用 CSS 设置框的最小高度

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

Example

<html>
   <head>
   </head>
   <body>
      <p style = "width:400px; min-height:150px; border:1px solid blue; padding:5px; margin:10px;">
         This paragraph is 400px wide and min height is 150px
         This paragraph is 400px wide and min height is 150px
         This paragraph is 400px wide and min height is 150px
         This paragraph is 400px wide and min height is 150px
      </p>
      <img alt = "logo" src = "/css/images/logo.png" width = "100" height = "100" />
   </body>
</html>

The above is the detailed content of Set the minimum 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