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

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


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            max-width: 300px;
            min-width: 100px;
            background-color: red;
         }
      </style>
   </head>
   <body>
      <p> Below is a div with maximum and minimum width. 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>

ผลลัพธ์

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