在查看bootstrap.css
引导程序版本 3 的新文件时,我遇到了这个片段
hr {
height: 0;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
在另一个拆分视图中,我有normalize.css
这个片段
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
normalize.css
我为片段找到了这条评论
/**
* Address differences between Firefox and other browsers.
*/
比较两者,height 属性在 bootstrap 中排在第一位,在 normalize 中排在最后。这有什么关系吗?