Computer >> Máy Tính >  >> Lập trình >> CSS

Đặt chiều cao tối thiểu mà một hộp có thể có bằng CSS


min-height thuộc tính được sử dụng để đặt chiều cao tối thiểu mà một hộp có thể có. Giá trị của thuộc tính min-height có thể là một số, một độ dài hoặc một tỷ lệ phần trăm.

Ví dụ

<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>