📜  css position absolute middle - CSS 代码示例

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

代码示例3
#child {
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: blue;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}