1、群组选择器(',')

/* 表示h1和h2颜色都是 red */
h1, h2 {
  color: red;
}

2、后代选择器(空格)

/* 表示 h1 下面的所有 strong 元素,不管是否以 h1 为直接父元素 */
h1 strong {color:red;}

3、子元素选择器('>')

/* 表示 h1 下面的所有以 h1 为直接父元素的 strong 元素,注意必须以 h1 为直接父元素 */
h1 > strong {color:red;}

/* 示例:下面第一个h1的两个strong元素是红色,第二个h1的strong元素将不变色 */
<h1>This is <strong>very</strong> <strong>very</strong> important.</h1>

<h1>This is <em>really <strong>very</strong></em> important.</h1>

4、相邻兄弟选择器('+')

/* 选择紧接在另一个元素后的元素,而且二者有相同的父元素。 */
/* 示例:下面第二个li变色 */
li+li {color:red;}
 <ul>
    <li>List item 1</li>
    <li>List item 2</li>
    <li>List item 3</li>
  </ul>

5、兄弟选择器('~')

/* 不一定要紧跟在后面,但必须得是相同父元素,即必须是同一级元素。 */
/* p~ul 选择前面有 <p> 元素的每个 <ul> 元素。*/

<p>0</p>
<ul>
  <li>1</li>
  <li>2</li>
  <li>3</li>
</ul>