问答详情
源自:13-9 Relative与Absolute组合使用

box2如何在box1里面居中啊

box2怎么在box1中居中

提问者:无悔冰魄 2021-03-12 10:05

个回答

  • qq_慕侠5047639
    2021-03-12 15:33:26
    已采纳

    用css样式即可

  • 慕尼黑6547879
    2021-06-03 16:02:53

        #box2 {

            width:100px;

            height:100px;

            position: absolute;

            top: 25%;

            left: 25%;


        }

  • 慕沐5414594
    2021-05-10 13:12:58

    #box2 {

            width: 100px;

            height: 100px;

            position: absolute;

            left: 50%;

            top: 50%;

            margin-left:-50px; 

            margin-top: -50px;

            text-align:center;


        }