“margin:0 auto”之间有什么区别吗?和“保证金:汽车;”

时间:2011-11-29 14:24:27

标签: css cross-browser

当我们想要页面的主要容器对齐中心时,我们通常会使用"margin: 0 auto;",但是当我使用"margin:auto;"时,我的某些浏览器的行为是相同的(Google Chrome,Firefox)

1 个答案:

答案 0 :(得分:32)

margin: 0 auto;

将元素的左右边距设置为auto,将上边距和下边距设置为0

margin: auto;

所有的边距设置为auto。由于<body>高度为100%,您可能会遇到相同的行为,因此垂直auto边距无效。