0

我在页面顶部有一个导航栏,它有一个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;
  }
}

如何让阴影出现在背景图像上?

4

2 回答 2

1

你可以添加position: relative;到你的.header风格。

http://codepen.io/anon/pen/YPLoGN

于 2015-02-25T16:47:37.010 回答
1

我在codepen上分叉了你的例子:链接

position: relative;

您需要在标题中添加位置以使其正常工作。(我也添加了 z-index,但相对似乎也解决了您的问题。我下面的作者的学分)

于 2015-02-25T16:48:43.597 回答