导航的CSS下落阴影与背景图象

时间:2015-02-25 16:43:19

标签: html css3 box-shadow

我在页面顶部有一个导航栏,其中有一个box-shadow,但它似乎不适用于下面的section元素和背景网址。如果我注释掉background属性,则投影很明显。

这是codepen: 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;
  }
}

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

2 个答案:

答案 0 :(得分:1)

您可以将position: relative;添加到.header样式。

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

答案 1 :(得分:1)

我在codepen上分享了你的例子:Link

position: relative;

您需要在标题中添加位置才能正常工作。 (我添加了z-index,但相对似乎也解决了你的问题。我下面的作者的信用)