问答详情
源自:15-3 面试常考题之已知宽高实现盒子水平垂直居中

为什么我按步骤写只显示这样

http://img2.mukewang.com/5f11724400018e1c09670413.jpg一直没居中

提问者:慕的地1413241 2020-07-17 17:41

个回答

  • qq_慕粉5038520
    2020-08-08 14:04:59

    .box {

            border: 1px solid #00ee00;

            height: 300px;

            width:300px;

            position:relative;

        }


        .box1 {

            width: 200px;

            height: 200px;

            border: 1px solid red;

            top:50%;

            left:50%;

            margin-left:-100px;

            margin-top:-100px;

            position:absolute;

            

        }


  • 慕数据9442692
    2020-07-17 18:04:25

    你发过来我给你看看

  • 慕数据9442692
    2020-07-17 18:02:16

    代码没写好