居中定位

2020-09-23  本文已影响0人  偶头像超凶
//方法1
.element {   
    width: 600px; height: 400px;   
    position: absolute; left: 50%; top: 50%;   
    margin-top: -200px;    /* 高度的一半 */  
    margin-left: -300px;    /* 宽度的一半 */  
}  
//方法2
.element {   
    width: 600px; height: 400px;   
    position: absolute; left: 50%; top: 50%;   
    transform: translate(-50%, -50%);    /* 50%为自身尺寸的一半 */  
} 
上一篇下一篇

猜你喜欢

热点阅读