Как выровнять по центру вертикально родительский контейнер по холсту с 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>