0
divを別のdivの中央に配置するにはどうすればよいですか?画像はどうですか?私はそれを縦と横の中心にしたい。私は近代的でフレックスを使いたい - 私は古いIEサポートについては気にしない。垂直CSSで中心divの要素をFlexで水平方向と垂直方向に整列する方法
.outside {
background: orange;
width: 400px;
height: 300px;
}
.inside {
width: 80%;
background: yellow;
}
<div class='outside'>
<div class='inside'>
This is the inside div that I would like to center in the outer one
</div>
</div>
---------------------------------------------------------------------------
<div class='outside'>
<img src="http://placehold.it/350x150">
</div>