龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > div+css/html >

CSS教程 9、CSS的Grouping and Nesting分组和

时间:2012-12-29 08:41来源:未知 作者:admin 点击:
分享到:
Grouping分组 当许多选择器有同样属性时,可以使用逗号组合它们。 例子: h2{ color:red; } .thisOtherClass{ color:red; } .yetAnotherClass{ color:red; } 上面的可以写成这样: h2,.thisOtherClass,.yetAnotherCla
 
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。
<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>
  这是由于,通过使用空格分离选择器,我们可以设定IDtop里面的h1颜色为#ff0,p是red和blod。
  这可能比较复杂,因为嵌套可以多级使用,所以需要多加练习。
  IE7新支持的选择器 可以看这里详细介绍 http://www.fun52.com/article.asp?id=237
 

精彩图集

赞助商链接