我的网站链接:https://staging.kelsan.biz:8144
我希望标头div类getHeaderTopFixed
是静态的。为此,我应用了以下样式
box-shadow: gray 0px 0px 5px !important;
position: fixed;
top: 0px;
width: 100%;
z-index: 9000;
但是不起作用。需要解决此问题的建议。
答案 0 :(得分:0)
请将其添加到CSS中,即可根据您的需要使用z-index。
#header {position: fixed;
top: 0;
left: 0;
right: 0;
z-index:999!important;
}
答案 1 :(得分:0)
尝试此CSS
overflow: hidden;
position: fixed;
top: 0;
width: 100%;
答案 2 :(得分:0)
这是由于父transform: translate3d(0, 0, 0);
上的<div class="off-canvas panelwrap" role="panel-wrap">
引起的。在这里看看如何解决问题:'transform3d' not working with position: fixed children