我在页面顶部有一个导航栏,它有一个box-shadow
,但它似乎不适用于section
下面带有背景 url 的元素。如果我注释掉该background
属性,则阴影很明显。
这是代码笔:http: //codepen.io/himmel/pen/ByxeGR
这是标记:
<div class="header">
<span class="brand">BRAND</span>
<ul class="link">
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</div>
<div class="blog-container">
<section>
</section>
</div>
这是CSS:
body {
margin: 0;
}
.header {
display: flex;
align-items: center;
font-family: 'Nunito';
width: 100%;
background-color: white;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
height: 4em;
.brand {
font-size: 1.3em;
padding-left: 1em;
}
.link {
display: flex;
list-style-type: none;
flex: 1 auto; // stretch to end of width
justify-content: flex-end;
margin: 0;
font-size: 1.3em;
li {
padding-right: 1em;
}
}
}
.blog-container {
display: flex;
flex-flow: column wrap;
background: url(https://unsplash.imgix.net/photo-1414490929659-9a12b7e31907?q=75&fm=jpg&s=f838066e7aa9eab9d1ccc28fd5ec9574) no-repeat center center fixed;
background-size: cover;
section {
height: 20em;
}
}
如何让阴影出现在背景图像上?