CSS中的组选择器

如果愿意,可以将样式应用于许多选择器。只需用逗号分隔选择器,如以下示例所示:

h1, h2, h3 {
   color: #36C;
   font-weight: normal;
   letter-spacing: .4em;
   margin-bottom: 1em;
   text-transform: lowercase;
}

此定义的样式规则也将适用于h1,h2和h3元素。列表的顺序无关紧要。选择器中的所有元素都将应用相应的声明。

您可以将各种id选择器组合在一起,如下所示:

#content, #footer, #supplement {
   position: absolute;
   left: 510px;
   width: 200px;
}