CSS位置相对于前50%的div无效

时间:2019-03-21 12:53:57

标签: html css css-position positioning

我在定位方面遇到问题:

enter image description here

我不能同时在照片和文字上设置top: 50%left: 50%,因为它不是50%。我尝试手动设置50%,更像是46%。

当我更改窗口大小时,文本移动。我不知道该怎么办,我正在寻找答案2小时

.photo-box {
  background: linear-gradient(250deg, rgba(251, 10, 237, 0.84), rgba(0, 186, 255, 0.91) 50%, rgba(15, 226, 98, 1));
  width: 100vw;
  text-align: center;
  font-size: 30px;
  padding-top: 70px;
  padding-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
  color: #f0eeee;
  font-family: sans-serif;
  position: relative;
}

.tytul {
  display: flex;
  text-align: center;
  position: absolute;
  top: 46%;
  left: 45.3%;
}

.zdj-pierw img {
  border-radius: 100px;
  align-items: center;
  justify-content: center;
}
<div class="photo-box" style="">

  <div class="tytul">Strona WWW </div>
  <div class="zdj-pierw">
    <img src="https://picsum.photos/200/200/?random" width="200" height="200" />

  </div>


</div>

1 个答案:

答案 0 :(得分:0)

您应该在父项上使用flex属性,而不仅仅是在您要放置的项目上使用。

我也将您的border-radius更改为50%,因为无论图像大小如何,这都是一个完美的回合。

.photo-box {
  background: linear-gradient(250deg, rgba(251, 10, 237, 0.84), rgba(0, 186, 255, 0.91) 50%, rgba(15, 226, 98, 1));
  width: 100vw;
  font-size: 30px;
  padding-top: 70px;
  padding-bottom: 70px;
  color: #f0eeee;
  font-family: sans-serif;
  position: relative;
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.tytul {
  position: absolute;
}

.zdj-pierw img {
  border-radius: 50%;
}
<div class="photo-box" style="">
  <div class="tytul">Strona WWW </div>
  <div class="zdj-pierw">
    <img src="https://picsum.photos/200/200/?random" width="200" height="200" />
  </div>
</div>