HTML, CSS

[CSS] after, not nth-child 같이 사용하기

유호야 2023. 5. 26. 05:13
반응형
  .aaa:not(:nth-child(2))::after {
    content: "helloooooo";
  }

순서를 보면 not 먼저 그리고 그 괄호 안에 nth-child 그리고 마지막에 ::after를 사용해야 한닷

반응형