フレックスボックスとjustify-content: center
をSafariでうまく再生できません。フレックスボックスjustify-content:センターがSafariで正常に動作しません
HTML:
<div class="flex-row">
<div class="label"> Label </div>
<div class="well"></div>
</div>
CSS:
これはそれの上に中央揃えラベルで、うまくシンプルなグレーを与えChromeとFFで.flex-row {
display: flex;
flex-direction: row;
justify-content: center;
}
.well {
width: 230px;
height: 200px;
background-color: grey;
}
.label {
z-index: 2;
position: absolute;
margin-top: -8px;
}
。しかしSafariでは、ラベルは中央にない。非中心ラベルを見るためにSafariで下のCodePenの例を開きます。誰もが既存の回避策を知っている場合
https://codepen.io/jklevin/pen/weLvxx
私の勘では、これはSafariで実装のバグが原因であるということですが、好奇心が強いです。
関連:https://stackoverflow.com/q/32991051/3597276 –