css實現元素居中的常見方法

一、經過 margin 屬性調整 :flex

{
position: absolute;
top: 50%;
left: 50%;
margin-left: 盒子的一半;
margin-top: 盒子的一半;
}

 

二、經過 transform 屬性調整:code

{
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-盒子的一半) translateY(-盒子的一半);
}

 

三、經過絕對定位:注意子絕父相(子元素絕對定位,父元素相對定位)orm

{
position: absolute;
top: 0;
left: 0;
right: 0;
bootom: 0;
margin: auto;
}

 

四、經過彈性盒子 :blog

/* 父盒子 */
{
display: flex;
justify-content: center;
align-items: center;
}
相關文章
相關標籤/搜索