Grouping 分组
当许多选择器有同样属性时,可以使用逗号组合它们。
例子:
h2 {
color: red;
}
.thisOtherClass {
color: red;
}
.yetAnotherClass {
color: red;
}
上面的可以写成这样:
h2, .thisOtherClass, .yetAnotherClass
{
color: red;
}
Nesting 嵌套
如果CSS结构良好,不需要使用很多class或ID选择器。这是因为CSS可以设定选择器里面选择器的属性。
例子:
#top {
background-color: #ccc;
padding: 1em
}
#top h1 {
color: #ff0;
}
#top p {
color: red;
font-weight: bol...[ 查看全文 ]