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

CSS ล้น:auto


CSS ล้น:อัตโนมัติ เพิ่มแถบเลื่อนเมื่อจำเป็นเท่านั้น ไม่เหมือนกับ ล้น :เลื่อน . คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน CSS overflow:auto คุณสมบัติ:

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            background-color: orange;
            width: 250px;
            height: 45px;
            border: 2px solid blue;
            overflow: auto;
         }
      </style>
   </head>
   <body>
      <h1>Heading</h1>
      <div>Overflow property used here. This is a demo text to show the working of CSS overflow: auto. This won't hide the content. A scrollbar would be visible, only if needed.</div>
   </body>
</html>

ผลลัพธ์

CSS ล้น:auto