Emotion
-
[CSS] emotion 사용 시 :nth-child CSS selector 경고CSS 2022. 6. 25. 18:27
The pseudo class ":nth-child" is potentially unsafe when doing server-side rendering. Try changing it to ":nth-of-type" 가상 클래스 ":nth-child"는 서버 사이드 렌더링 수행 시 잠재적으로 안전하지 않다. ":nth-of-type"으로 변경하라 CSS 라이브러리로 emotion 사용 시에, :nth-child을 사용하니 위와 같은 경고 메시지가 나타났다. ":nth-of-type"으로 변경하니 경고는 사라졌지만 이유가 무엇인지 궁금해졌다. :nth-child와 :nth-of-type 차이 :nth-child(n) :nth-child 부모 엘리먼트의 모든 자식 엘리먼트중 n번째 부모 엘리먼트의 특정 자식 ..