CSS中级教程组合与嵌套_CSS教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!
组合

你不必重复有相同属性的多个选择符,你只要用英文逗号(,)隔开选择符就可以了。
比如,你有如下的代码:

示例代码 [www.mb5u.com]
h2 {
color: red;
}
.thisOtherClass {
color: red;
}
.yetAnotherClass {
color: red;
}

则你可以这样写:

示例代码 [www.mb5u.com]
h2, .thisOtherClass, .yetAnotherClass {
color: red;
}

嵌套

CSS结构好的话,没有必要使用过多的类或者标识选择符。这是因为你可以指定在选择符内的选择符。(或者更好的说法,上下文选择符--译者著)
比如:

示例代码 [www.mb5u.com]
#top {
background-color: #ccc;
padding: 1em
}
#top h1 {
color: #ff0;
}
#top p {
color: red;
font-weight: bold;
}

这就减去不必要的类或者标识选择符,假如应用到像这样的HTML中:

示例代码 [www.mb5u.com]
<div id="top">
<h1>Chocolate curry</h1>
<p>This is my recipe for making curry purely with chocolate</p>
<p>Mmm mm mmmmm</p>
</div>

这是因为,用英文半角空格间隔选择符,我们指明了在标识id内的h1有“#ff0”的颜色,而p则是红色red和粗体bold。
这可能也会有些复杂(因为可能不止两级,比如在内在内在内在内等等)。你有必要多加练习。

来源:无忧整理//所属分类:CSS教程/更新时间:2006-10-16
相关CSS教程