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

Thuộc tính chiều cao tối đa CSS


max-height thuộc tính được sử dụng để thiết lập chiều cao tối đa của một hộp. Giá trị của thuộc tính max-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; 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>