css中设置div水平居中,margin:0px auto无用的情况

在CSS中加了margin:0px auto;却没有效果,不能实现居中的问题!margin:0px auto;意思就是:上下边界为0。左右依据宽度自适应!就是水平居中的意思.无效的原因是,当你没有设置width时,解释器不知道你的宽度,当然就不会居中。就会到左边去,所以设置width就好了。

原文地址:https://www.cnblogs.com/zsychanpin/p/7219016.html