我正在尝试按百分比创建垂直定位的 DIV。我将父容器设置为相对,内容 div 设置为绝对。当我用像素定位内容 div 时,这很好用,但是当我尝试百分比时,百分比被忽略:
.container {
position: relative;
}
.content {
position: absolute;
left: 10%;
top: 50%;
}
<div class="container"><div class="content"> This is the content div. It should be 10% from the left of the container div.
</div></div>
内容 div 出现在页面顶部,忽略 50% 的垂直位置。我错过了什么?提前致谢!