.back_ground{height:1000px; background-color:red; position: relative}
.loading_box{width: 500px;height: 500px;position: absolute ;margin-left: auto}
被强制改变的尺寸,使用margin:auto才有效
box在绝对定位的情况下,需要用top:0; bottom:0; left:0; right:0 来拉伸盒子,使box在没有设置宽高的情况下自动填满其父级。同时只有同时设置margin-left:auto和margin-right:auto才可以使box水平居中。
因为box没有拉伸,再有居中应该是margin:auto;