CSS overflow-style
Chỉ rõ phương thức di chuyển ưa thích cho các yếu tố tràn
Thuộc tính | giá trị | Ví dụ | Mô tả |
---|---|---|---|
overflow-style | auto
|
overflow-style: auto ; | |
scrollbar | overflow-style: scrollbar; | ||
panner | overflow-style: panner; | người sử dụng có thể di chuyển nội dung của phần tử trực tiếp. | |
move | overflow-style: move; | người sử dụng có thể kéo nội dung xung quanh với con chuột | |
marquee; | overflow-style: marquee; | nội dung di chuyển, mà không có bất kỳ sự kiện nào người sử dụng để kiểm soát nó |
Xem ví dụ
<style>
.ttt{ width:100%; height:400px;margin:20px;border:0px solid #ff0099;}
#auto {overflow:hidden; overflow-style: auto; width:450px;height:300px;border:2px solid #ff0099;}
#scrollbar {overflow:hidden; overflow-style:scrollbar;border:2px solid #ff0099;width:450px;height:300px;}
#panner {overflow:hidden; overflow-style:panner;border:2px solid #ff0099;width:450px;height:300px;}
#move {overflow:hidden; overflow-style:move;border:2px solid #ff0099;width:450px;height:300px;}
#marquee {overflow:hidden; overflow-style:marquee;border:2px solid #ff0099;width:450px;height:300px;}
</style>
<div class="ttt">
<div id="auto"><img src="http://tusachphathoc.org/gallery/thumbs/lrg-4128-1038834_12963627-jpg"/></div></div><div class="ttt">
<div id="scrollbar"><img src="http://tusachphathoc.org/gallery/thumbs/lrg-4128-1038834_12963627-jpg"/></div></div>
<div class="ttt">
<div id="panner"><img src="http://tusachphathoc.org/gallery/thumbs/lrg-4128-1038834_12963627-jpg"/></div></div>
<div class="ttt">
<div id="move"><img src="http://tusachphathoc.org/gallery/thumbs/lrg-4128-1038834_12963627-jpg"/></div></div>
<div class="ttt">
<div id="marquee"><img src="http://tusachphathoc.org/gallery/thumbs/lrg-4128-1038834_12963627-jpg"/></div></div>
Sự tương thích ( Cập nhật / Báo lỗi )
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
x | x | x | x | x | x | x | x |
Chủ đề: p.CSS p.CSS basic p.CSS practice