> For the complete documentation index, see [llms.txt](https://ayou09110.gitbook.io/jquery/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ayou09110.gitbook.io/jquery/undefined-2/undefined.md).

# 계층 선택자

![](https://1378939749-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MJPDqatCNg4cqjspD43%2F-MJPg-tYC35XAXj3P7Ra%2F-MJPg2sTDe2cTPzvF59a%2Fimage%20\(2\).png?alt=media\&token=c3d3628b-8590-4613-9885-796b8a0e0af8)

```javascript
$(".list li").css({backgroundColor:"#bbdefd", border:"1px dashed #303f9f"});  //하위 선택자
$(".list > li").css({backgroundColor:"#bbdefd", border:"1px dashed #303f9f"});  //자식 선택자
$(".list5 + li").css({backgroundColor:"#bbdefd", border:"1px dashed #303f9f"});  //형제 선택자
$(".list5 ~ li").css({backgroundColor:"#bbdefd", border:"1px dashed #303f9f"});  //형제들 선택자
```
