📜  html 位置绝对中心 - CSS 代码示例

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

代码示例5
.container {
  left:0;
  right:0;

  margin-left: auto;
  margin-right: auto;

  position: absolute;
  width: 40%;

  outline: 1px solid black;
  background: white;
}