這段代碼為什么不能使box居中?
.back_ground{height:1000px; background-color:red; position: relative}
.loading_box{width: 500px;height: 500px;position: absolute ;margin-left: auto}
.back_ground{height:1000px; background-color:red; position: relative}
.loading_box{width: 500px;height: 500px;position: absolute ;margin-left: auto}
2016-08-17
舉報
2017-08-02
被強制改變的尺寸,使用margin:auto才有效
2016-10-17
box在絕對定位的情況下,需要用top:0; bottom:0; left:0; right:0 來拉伸盒子,使box在沒有設置寬高的情況下自動填滿其父級。同時只有同時設置margin-left:auto和margin-right:auto才可以使box水平居中。
2016-08-18
因為box沒有拉伸,再有居中應該是margin:auto;