在蓝图 CSS 框架的链接代码中,为选择器定义了一种样式,div.class
并且只是.class
选择器。这不是多余的吗?或者是否有更微妙的原因使用两个选择器定义类?
https://github.com/joshuaclayton/blueprint-css/blob/master/blueprint/src/grid.css(第229-235行)
/* In case you need to add a gutter above/below an element */
div.prepend-top, .prepend-top {
margin-top:1.5em;
}
div.append-bottom, .append-bottom {
margin-bottom:1.5em;
}