我有一个div,我想在覆盖屏幕的不透明图像上方居中。我已经知道它在Chrome(闪烁)中可以正常工作,但是我无法在Safari(Webkit)中显示它。我创建了一个simplified JSFiddle version of my issue,并在此处也包括了代码片段。

的HTML

<div id="home">
  <div class="wallpaper"></div>
  <div class="info-wrapper">
    <span class="name">John Doe</span>
  </div>
</div>


SCSS

#home {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: inherit;
  display: flex;
  align-items: center;
  background-color: black;
}

.wallpaper {
  width: 100%;
  height: 100%;
  min-height: inherit;
  opacity: .5;
  background: url(https://images.unsplash.com/photo-1440700265116-fe3f91810d72);
  background-size: cover;
  background-repeat: no-repeat;
}

.info-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  color: white;
  > .name {
    font-weight: 700;
    font-size: 7em;
  }
}


如果可以更轻松地解决此问题,我愿意更改HTML的结构。

最佳答案

[更新]


  如果元素具有“位置:绝对”,则包含块由最接近的祖先建立,其“位置”为“绝对”,“相对”或“固定”


您可以在此link中获取更多详细信息



.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.red {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 200px;
  background-color: red;
}

.green {
  width: 20px;
  height: 20px;
  background-color: green;
  position: absolute;
}

<div class="container">
  <div class="red"></div>
  <div class="green"></div>
</div>





在此示例中,绿色框未设置left属性,值应为auto,结果应引用最近的元素。并且,在Safari和Firefox中显示正确。 Chrome浏览器不符合标准。



[较旧]

我认为您需要的是让墙纸从文件中流出。在野生动物园中运行示例。 sample

.wallpaper {
    width: 100%;
    height: 100%;
    position: absolute;
    min-height: inherit;
    opacity: .5;
    background: url(https://images.unsplash.com/photo-1440700265116-    fe3f91810d72);
    background-size: cover;
    background-repeat: no-repeat;
}

10-07 22:00