元素居中

        
            
        

1. position + transform
          

            .parent{
                width: 100%;
                height: 200px;
                background-color: #00ffff;
                position: relative;
            }
            .child{
                width: 300px;
                height: 100px;
                background-color: #ff0000;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

    2. flex布局

.parent {
    width: 100%;
    height: 600px;
    background-color: #00ffff;
    display: flex;
    justify-content: center;
    align-items: center; /*垂直居中*/
}
.child {
    width: 300px;
    height: 100px;
    background-color: #ff0000;
}

 

你可能感兴趣的:(前端)