청사진 CSS 프레임 워크의 링크 된 코드에는 div.class
선택기와 .class
선택기에 대해 정의 된 스타일이 있습니다. 이것은 중복되지 않습니까? 아니면 두 개의 선택자를 사용하여 클래스를 정의하는 미묘한 이유가 있습니까?blueprint 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;
}
알다시피, 그것은 많은 감각을 만듭니다 (다소 특정성을 위해). 감사! – noli