position:fixed;如何居中

div{
    position:fixed;
    margin:auto;
    left:0;
    right:0;
    top:0;
    bottom:0;
    100px;
    height:100px;
}

如果只需要左右居中,那么把 bottom:0; top:0; 删掉即可.

如果只需要上下居中,那么把 left:0;  right:0; 即可

原文地址:https://www.cnblogs.com/zhangyabin---acm/p/5139230.html