CSS代码组合和嵌套

CSS的组合和嵌套CSS组合你不必重复有相同属性的多个选择符,你只要用英文逗号(,)隔开选择符就可以了。比如,你有如下的代码:h2 { color: red; }.thisOtherClass { color: red; }.yetAnotherClass { color: red; } 则你可以这样写:h2, .thisOt

CSS的组合和嵌套
CSS组合
你不必重复有相同属性的多个选择符,你只要用英文逗号(,)隔开选择符就可以了。
比如,你有如下的代码:
h2 { color: red; }
.thisOtherClass { color: red; }
.yetAnotherClass { color: red; }
则你可以这样写:
h2, .thisOtherClass, .yetAnotherClass { color: red; }
使用组合,你可以一次定义多个CSS,为你节省很多字节和时间.
CSS嵌套
CSS结构好的话,没有必要使用过多的类或者标识选择符。这是因为你可以指定在选择符内的选择符。(或者更好的说法,上下文选择符--译者著)
比如:
#top { background-color: #ccc; padding: 1em }
#top h1 { color: #ff0; }
#top p { color: red; font-weight: bold; }
这就减去不必要的类或者标识选择符,如果应用到像这样的HTML中:
<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代码读起来更清晰,能给你制定的元素定制CSS.
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

demo展示1: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtdhtml xmlns=http://www.w3.org/1999/xhtml head meta http-equiv=Content-Type content=text/html; charset=utf-8 / tit
设置或获取对象指定的文件名或路径。alert(window.location.pathname
DEDE项目上 编辑软件大小(单位换算):$(doc
script language="javascript"&g