【jQuery/Selector #24】:first-child Selector 1. Description .first()는 한 개의 자식Element만 찾지만, :first-child는 각 부모Element의 첫 번째 자식Element를 찾는다. :first-child는 :nth-child(1)과 같다. 2. Example #1버튼을 클릭하면 태그 하위의 첫 번째 태그를 찾아서 배경색을 변경한다. 버튼을 클릭할 때마다 해당 스타일을 토글한다. JavaScript/jQuery 2023.02.23