2.2层次选择器
- 后代选择器:在某个元素的后面
/*后代选择器*/
body p{
background: red;
}
- 子选择器:一代,儿子
/*子选择器*/
body>p{
background: #267fc4;
}
- 相邻兄弟选择器 :同辈
/*相邻兄弟选择器 :只有一个,向下相邻*/
.active + p{
background: #c49726;
}
- 通用选择器
/*通用兄弟选择器,当前选中元素的向下的所有兄弟元素*/
.active~p{
background: green;
}