位置格相对高度父

问题描述 投票:0回答:2

我试图让登录的文字定位在从父卡报头 - 背景33%的高度,而是它看起来像被应用到整个卡的高度。

.Account-Details-Card-Background {
  width: 780px;
  height: 600px;
  border-radius: 18px;
  box-shadow: 0 7px 70px 0 rgba(90, 97, 105, 0.1), 0 10px 10px 0 rgba(90, 97, 105, 0.06), 0 4px 8px 0 rgba(90, 97, 105, 0.12), 0 2px 0 0 rgba(90, 97, 105, 0.11);
  background-color: #ffffff;
}

.Card-Header-Background {
  width: 780px;
  height: 69.6px;
  border-radius: 18px;
  box-shadow: 0 1px 0 0 #e0e2e8, 0 -1px 0 0 #e0e2e8;
  background-color: #ffffff;
}

.Label---Log-in {
  width: 61px;
  height: 24px;
  font-family: SFProText;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  text-align: center;
  color: #3c5071;
}
<div class="Account-Details-Card-Background" style="margin: 17.6vh 22.9vw; position: absolute">
  <div class="Card-Header-Background">
    <div>
      <div class="Label---Log-in text" style="margin: 33% 45%; position: absolute;">
        Log in
      </div>
    </div>
  </div>
</div>

(Qazxswpoi)

html css css3
2个回答
0
投票

首先,不要使用内嵌式的,如果你不就得了。

为了实现你愿意,你可以只使用codepen因为我在这里做什么:top: 33%

请让我知道如果这就是你所需要的。


0
投票

现在看来很明显,但我需要的是不填充保证金。

© www.soinside.com 2019 - 2024. All rights reserved.