元素居中的几种方法

  1. flexbox
div1
.container {
    width: 300px;
    height: 300px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}
.div1 {
    width: 100px;
    height: 100px;
    background: #039748;
}
  1. 绝对定位 + transform
div1
.container {
    width: 300px;
    height: 300px;
    border: 1px solid black;
    position: relative;
}
.div1 {
    width: 100px;
    height: 100px;
    background: #039748;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

你可能感兴趣的:(元素居中的几种方法)