首页 相关文章 CSS基础教程: CSS的分组(Grouping)和嵌套(Nesting)

CSS基础教程: CSS的分组(Grouping)和嵌套(Nesting)

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...[ 查看全文 ]

2016-02-19 标签:

CSS基础教程: CSS的分组(Grouping)和嵌套(Nesting)的相关文章

手机页面
收藏网站 回到头部