1.后代选择器
选中parent元素内部后代所有 n 元素。
parent n{}
2.子代选择器
选中 parent 元素内部 的子元素 n
parent>n{}
3.兄弟选择器
选中 brother 元素后面的所有某一类兄弟元素 n。
brother~n{}
4.相邻选择器
选中brother元素后面的某一个相邻的兄弟元素n。
brother+n{}
5.组合选择器
可以让上面提到的选择器多个组合起来使用
brother+n,parent n{}
.aaa+p,div div p {
background: red;
}