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

CSS ล้น:ซ่อน


ในคุณสมบัติล้น CSS ที่มีค่า ซ่อน , ล้นถูกตัด. เนื้อหาซ่อนอยู่ คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน CSS overflow:hidden ทรัพย์สิน −

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            background-color: orange;
            width: 250px;
            height: 35px;
            border: 2px solid blue;
            overflow: hidden;
         }
      </style>
   </head>
   <body>
      <h1>Heading</h1>
      <div>Overflow property used here. This is a demo text to show the working of CSS overflow: hidden. This hides the content.</div>
   </body>
</html>

ผลลัพธ์

CSS ล้น:ซ่อน