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

时间:2023-03-09 05:39:30
css中设置div水平居中,margin:0px auto没用的情况

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

http://blog.****.net/liang5630/article/details/39030799