有没有办法将一个绝对div放在他的父母居中,并在z-index的内容之上?
父母的大小未知.绝对div应该覆盖内容.
将div垂直和水平居中的简单方法如下:
.container {
position: relative;
width: 100px; /* not part of solution */
height: 100px; /* not part of solution */
background-color: #808; /* not part of solution */
border-radius: 50%; /* not part of solution */
}
.content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center; /* not part of solution */
}
I'm absolutly centered