1. 程式人生 > >css讓div居中顯示

css讓div居中顯示

絕對居中

.xx_div {
    position: absolute;
    /* left, right, bottom, top要和position一起使用,margin-*不用 */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

這樣div框就會絕對顯示在網頁中間

 

浮動居中

float只有left和right,沒有center。 可以如下設定居中

.xx_div {
    margin-left: auto;
    margin-right: auto;
}