CSS基础教程: CSS的分组(Grouping)和嵌套(Nesting)
CSS基础教程: CSS的分组(Grouping)和嵌套(Nesting)
发布时间:2015-11-05 来源:查字典编辑
摘要:Grouping分组当许多选择器有同样属性时,可以使用逗号组合它们。例子:h2{color:red;}.thisOtherClass{col...

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: bold;

}

如果你碰到下面这样的形式,记得处理掉你网页上的class或ID。

divh1Chocolate curry

This is my recipe for making curry purely with chocolate

Mmm mm mmmmm

这是由于,通过使用空格分离选择器,我们可以设定IDtop里面的h1颜色为#ff0,p是red和blod。

这可能比较复杂,因为嵌套可以多级使用,所以需要多加练习。

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新 Div+Css教程学习
热门 Div+Css教程学习
网页设计子分类