固定菜单重叠在它下面的div

时间:2016-03-12 14:04:14

标签: html css

我有一个固定的菜单,之后我有一个固定背景图像的div。问题是菜单与第二张图像重叠(因此位于菜单下方的图像为100像素)。

  

示例链接:http://codepen.io/gorez16rus/pen/GZjgNB

图片链接:http://www.mygracefalls.com/wp-content/uploads/2014/03/upcoming-events_std_t-e1374861489324.jpg

菜单:

.home-wrap header{
  width: 100%;
  height: 100px;
  background-color: white;
  position: fixed;
  z-index: 10;
}

股利:

.event-box{
  width: 100%;
  height: 520px;
  padding: 0;
  background-image: url('http://www.mygracefalls.com/wp-content/uploads/2014/03/upcoming-events_std_t-e1374861489324.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 3;
  position: relative;
}

1 个答案:

答案 0 :(得分:2)

解决此问题的最简单方法是更改​​图像的背景位置:

out of scope

Modified version of your code on Codepen