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

ปิดการใช้งาน Scroll Anchoring ด้วย CSS


ในการปิดใช้งานการยึดเลื่อนเริ่มต้นโดยเว็บเบราว์เซอร์ เราสามารถใช้ overflowanchor ทรัพย์สิน

ตัวอย่าง

ตัวอย่างต่อไปนี้ให้แนวคิดเกี่ยวกับคุณสมบัติ overflow-anchor -

<!DOCTYPE html>
<html>
<head>
<style>
body {
   overflow-anchor: none;
}
div{
   display: flex;
   flex-direction: row;
}
</style>
</head>
<body>
<div><img src="https://images.unsplash.com/photo-1613061588991-
6dd130548bc7?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=400&ixlib=rb1.2.1&q=80&w=160" />
<img src="https://images.unsplash.com/photo-1612129717112-
9d1274034547?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=400&ixlib=rb1.2.1&q=80&w=160" />
<img src="https://images.unsplash.com/photo-1613079936591-
8ce270890241?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=400&ixlib=rb1.2.1&q=80&w=160" />
<img src="https://images.unsplash.com/photo-1612454902143-
328050834c9e?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=400&ixlib=rb1.2.1&q=80&w=160" />
</div>
<h2>Test overflow</h2>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะให้ผลลัพธ์ดังต่อไปนี้ -

ปิดการใช้งาน Scroll Anchoring ด้วย CSS