Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 369 Bytes

选择器.md

File metadata and controls

15 lines (11 loc) · 369 Bytes

选择器中的加号(+)

加号为:相邻同胞选择器,选择同一个父元素下的紧接着的元素

比如页面上方的用“/”分开的导航栏

/*选择li同一个父元素的下一个li元素*/
li+li:before{
    padding: 0 5px;
    color: #ccc;content: "/\00a0";
}
/*会在除了第一个li之外的li后添加一个before为元素*/