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

ตั้งค่าความสูงต่ำสุดและความสูงสูงสุดขององค์ประกอบโดยใช้ CSS


ในการตั้งค่าความสูงต่ำสุดและความสูงสูงสุดขององค์ประกอบโดยใช้ CSS คุณสามารถลองใช้รหัสต่อไปนี้ -

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            max-height: 550px;
            min-height: 450px;
            background-color: red;
         }
      </style>
   </head>
   <body>
      <p> Below is a div with maximum and minimum height. Resize the web browser to see the effect.</p>
      <div>This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
      </div>
   </body>
</html>