Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

กำหนดความสูงสูงสุดที่กล่องสามารถมี CSS


ส่วน ความสูงสูงสุด คุณสมบัติใช้เพื่อกำหนดความสูงสูงสุดที่สามารถเป็นกล่องได้ ค่าของคุณสมบัติความสูงสูงสุดอาจเป็นตัวเลข ความยาว หรือเปอร์เซ็นต์

ตัวอย่าง

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