为什么扩写这一段代码,得不出结果
你对margin:200px auto理解错了
margin:200px auto意思是上下外边距为200px,左右边距都为auto,所以就平分居中了
margin-left:20px 是可以显示,再加个auto是错误的,相对于给左外边框设置两个值,画蛇添足
例子中给的margin:200px auto;表示上下边距为200px,左右边距为自动,相当于他是把上下左右边距之间用一行代码解决的。
你实在想分开写这样写是不对的。应该写margin-left:auto; margin-right:auto; 再margin的top和bottom设值就行了
div样式中加上margin:auto即可。