在 Chrome 上,如果我刷新浏览器或打开检查元素,导航栏上的框阴影会消失并且根本不显示。这不会发生在 IE 上。恢复它的唯一方法是硬刷新。有任何想法吗?
网站网址:http ://tomwilson.pw/files/design/
我的 HTML 是:
<div id="nav_wrapper">
<div id="nav_content">
<div id="nav_logo"></div>
<div id="navigation">
<a href="#" class="active">Home</a>
<a href="#">Link One</a>
<a href="#">Link Two</a>
<a href="#">Link Three</a>
<a href="#" class="button">Sign In ›</a>
</div>
</div>
</div>
<div id="feature_home"></div>
我的CSS是:
div#nav_wrapper{
height: 110px;
width: 100%;
background: url('../img/nav_bg.png'), #293340;
box-shadow:0 0 10px rgba(0,0,0,0.8);
position: relative;
z-index: 2;
display: block;
}
div#nav_content{
height: 110px;
margin: auto;
}
div#feature_home{
width: 100%;
height: 500px;
background: url('../img/feature_bg.png'), #55B5D4;
position: relative;
z-index: 1;
display: block;
}