停止垂直滚动

时间:2015-05-21 14:41:40

标签: html css scroll fixed absolute

我需要防止div垂直滚动,但允许它水平滚动...
基本上添加"垂直位置:固定"和"水平位置:绝对"
我更喜欢用CSS或JavaScript来做... ... 这是我需要垂直固定的div ...

#logo{ z-index: 50; top: 16px; margin:0px auto 0px auto; -webkit-filter: invert(100%); position: absolute; width: 124; height: 56; }

非常感谢

1 个答案:

答案 0 :(得分:0)

我刚添加了一个容器div,其位置为:relative,并将徽标div位置更改为固定,并且有效... 无论如何,谢谢大家的帮助!

#container{
height: auto;
width: 76%;
position: relative;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}

#logo{
z-index: 50;
top: 16px;
margin:0px auto 0px auto;
-webkit-filter: invert(100%); 
position: fixed;
width: 124;
height: 56;
}

最好的问候