📜  css 绝对来自中心而不是角落 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:27.886000             🧑  作者: Mango

代码示例1
this makes it so position absolute focuses in the middle of the element
instead of the top-left corner

.parent{
  position: relative;
}
.child-element-you-want-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}