我想将div放在页面的绝对中心,其中包括justify-content:center和align-items:center但是div必须是页面的100%宽度和高度才能位于绝对中心。
当您在div的顶部或底部添加元素时,问题就会到来,这会降低我们想要居中且不再位于绝对中心的div的高度。
这是https://jsfiddle.net/nybf8tjc/1页面 我可以添加
.typewriter{margin-top: -41px;}
解决这个问题,但我觉得必须有一个更好的方法来做到这一点。
答案 0 :(得分:1)
您可以将.typewriter
设为一个绝对定位的元素,并添加常用的设置,以便将其定位,例如
.typewriter {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
etc.
}
答案 1 :(得分:0)
你可以通过使用它来简单地实现它。
div.father {
width: 100vw;
height: 100vw;
position: absolute;
display: flex;
align-items: center;
justify-content: space-around;
}
div.father div.child {
width: 400px;
height: 250px;
background-color: teal;
position: relative;
}

<div class="father">
<div class="child"></div>
</div>
&#13;
您也可以使用transform
属性:
div.child {
width: 400px;
height: 250px;
margin:0;
padding: 0;
background-color: teal;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
&#13;
这应该使您想要的容器居中。 看看https://css-tricks.com/snippets/css/a-guide-to-flexbox/