问答详情
源自:2-2 完成基本界面元素(一)

水平垂直居中

水平垂直居中可以写成“

left:0;

right:0;

top:0;

bottom:0;

margin:auto;

提问者:慕粉1461461666 2016-09-13 11:29

个回答

  • 低吟x浅笑
    2018-03-11 14:44:43

    .hh{

       

        width: 0px; height: 0px;

        position: absolute;

        left: 0;

        top: 0;

        right: 0;

        bottom: 0;

        margin: auto;    /* 有了这个就自动居中了 */


    }

    记得,需要定义宽度