margin: 0 auto 属性 值列出一次 vs 两次
margin: 0 auto property values listed once vs twice
我正在复习一些基础知识 CSS,我偶然发现了一个教程,说要使用:
margin: 0 auto 0 auto;
相对于...
margin: 0 auto;
就其本身而言,居中。
如果将 0 auto 设置一次而不是两次有什么区别,有人可以向我解释一下吗?当我编码时,我没有注意到差异,所以我的猜测是使用 0 auto, once 是一个简写,它做的事情完全相同。
没有区别
margin: 0 auto 0 auto;
和
margin: 0 auto;
When one value is specified, it applies the same margin to all four sides.
When two values are specified, the first margin applies to the top and
bottom, the second to the left and right.
When three values are specified, the first margin applies to the top,
the second to the left and right, the third to the bottom.
When four values are specified, the margins apply to the top, right,
bottom, and left in that order (clockwise).
我正在复习一些基础知识 CSS,我偶然发现了一个教程,说要使用:
margin: 0 auto 0 auto;
相对于...
margin: 0 auto;
就其本身而言,居中。
如果将 0 auto 设置一次而不是两次有什么区别,有人可以向我解释一下吗?当我编码时,我没有注意到差异,所以我的猜测是使用 0 auto, once 是一个简写,它做的事情完全相同。
没有区别
margin: 0 auto 0 auto;
和
margin: 0 auto;
When one value is specified, it applies the same margin to all four sides.
When two values are specified, the first margin applies to the top and bottom, the second to the left and right.
When three values are specified, the first margin applies to the top, the second to the left and right, the third to the bottom.
When four values are specified, the margins apply to the top, right, bottom, and left in that order (clockwise).