1
我想知道爲什麼position: sticky
適用於某些x軸滾動,但是一旦滾動超過屏幕寬度的初始寬度,您的'sticky div'將停止粘貼。當css位置sticky停止粘貼
在這個例子中,我有一個左側的酒吧,左側粘貼(請注意,我不能使用position: fixed
或position: absolute
,因爲在我的實際項目中,左側div和右側div需要滾動上下沿y軸下來,因此我們只左側粘)
有一個額外的CSS參數,我可以定義,如
left-sticky-distance=999999%
或類似的東西?
一些測試代碼示出當低於
<html>
<body>
<div style='
position:sticky;
z-index:1;
left:0;
width:100px;
height:200px;
overflow: hidden;
background-color:#ff0000;
opacity:0.8;
>
</div>
<div style='position:absolute; top:10;left:10; width:200; height:50px; background-color: blue'>B</div>
<div style='position:absolute; top:10;left:110; width:200; height:50px; background-color: blue'>C</div>
<div style='position:absolute; top:10;left:210; width:200; height:50px; background-color: blue'>D</div>
</body>
<html>
請您創建一個小提琴什麼的? –