我有一个固定的定位div(#stoerer),但它仍然滚动(但只是光学)。看看这个:this gif explane what i mean
这是我的代码:
<div id="stoerer">
<button class="closed"><i class="fa fa-times" aria-hidden="true"></i></button>
<h1>OSTERSPECIAL!</h1>
<h2>EINMALIGE ANGEBOT ZU OSTERN</h2>
<a href="<?= BASEURL ?>angebote"><i class="fa fa-angle-double-left" aria-hidden="true"></i> Erfahre mehr</a>
</div>
#stoerer {
//display: none;
position: fixed;
right: 0;
top: 15%;
@include box_shadow(4);
width: 350px;
background: $mvBlue;
padding: 20px;
z-index: 999;
}
答案 0 :(得分:1)
我找到了原因,它是一个父div,它有一个-webkit-perspective: 1000;
css属性,我刚删除它。 :)无论如何,谢谢你的意见。