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

CSS ความสูงต่ำสุด


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

ตัวอย่าง

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