CSS 页面居中显示问题

/* 页面顶部居中显示 */
.head {
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
}
/* 页面底部居中显示 */
.foot {
    position: absolute; 
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
/* 页面上下左右居中显示 */
.center {
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

 

posted @ 2018-11-13 10:17  格鲁特baby  阅读(84)  评论(0编辑  收藏  举报