我正在尝试使用以下内容:
<div class="center">
...
</div>
CSS:
.center{
position: absolute;
height: 50px;
width: 50px;
background:red;
top:calc(50% - 50px/2);
left:calc(50% - 50px/2);
}
然而,似乎 div 不是位于视口的中心,而是位于包围它的 div 的中心。
如何使用 calc 将 div 定位在屏幕中央?