親コンテナをキャンバス に垂直方向に中央揃えするにはどうすればよいposition:relative
ですか? 親コンテナには、 を持つ子要素がありposition:absolute
ます。子要素は、親コンテナーの中央に配置されています。
ここにスニペットがあります:
.container {
position: relative;
width: 300px;
height: 300px;
background-color: red;
margin: auto;
}
.item {
position: absolute;
width: 100px;
height: 100px;
background-color: blue;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
}
<div class="container">
<div class="item"></div>
</div>