나는이 div
몇 가지 포함 태그 ul
태그.
첫 번째 ul
태그에 대해서만 CSS 속성을 설정할 수 있습니다 .
div ul:first-child {
background-color: #900;
}
그러나 다음 ul
은 첫 번째 태그를 제외하고 서로 다른 태그 에 대해 CSS 속성을 설정하려는 시도가 작동하지 않습니다.
div ul:not:first-child {
background-color: #900;
}
div ul:not(:first-child) {
background-color: #900;
}
div ul:first-child:after {
background-color: #900;
}
"첫 번째 요소를 제외한 각 요소"를 CSS로 작성하는 방법