问答详情
源自:13-8 我就在那不动了-层模型之固定定位

fixed在页面上下居中怎么设置?

#div1{

    width:200px;

    height:200px;

    background-color:rgba(255,0,0,0.3);

position:fixed;

bottom:0;

right:0;

}

bottom:0; right:0; 红色的框在右下角,怎么设置能让红框在整个页面上下居中呢?

提问者:随逸而菲4380348 2018-07-18 11:01

个回答

  • qq_carry型选手_0
    2019-03-23 11:57:45

    你可以这样 top:0; left:0; bottom:0; right:0; margin:auto;

  • qq_随遇而安_168
    2018-07-18 11:15:06

    top:50%;

    margin-top:-100px;