0
パーセンテージで区切ってdiv内にある絶対位置のインライン要素を垂直方向にセンタリングしようとしています。フレックスボックスそして、あらゆる種類のアスペクト比で動作しなければなりません。パーセンテージとフレックスボックスのないdivの中で、インライン要素を絶対位置に垂直にセンタリング
.outerElement1 {
height: 200px;
width: 250px;
background: gray;
font-size: 0;
line-height: 0;
}
.outerElement2 {
height: 250px;
width: 200px;
background: gray;
font-size: 0;
line-height: 0;
}
.innerElement {
height: 100%;
width: 100%;
background: tomato;
opacity: 0.5;
position: relative;
}
h2 {
font-size: 20px;
height: 100%;
width: 100%;
border: 4px solid white;
display: block;
position: absolute;
box-sizing: border-box;
margin: 0;
padding-top: 50%;
}
<div class="outerElement1">
<div class="innerElement">
<h2>Text</h2>
</div>
</div>
<div class="outerElement2">
<div class="innerElement">
<h2>Text</h2>
</div>
</div>
誰かが私は本当に感謝されることをどのように達成するかについての考えを持っている場合!