자기개발/Front-End

CSS 홀수, 짝수 선택

실버블렛 2021. 3. 21. 11:15
반응형

샘플 HTML 코드

<!DOCTYPE html>
<html>
<head>
</head>
<body>

<p>The first paragraph.</p>
<p>The second paragraph.</p>
<p>The third paragraph.</p>
<p>The fourth paragraph.</p>

</body>
</html>

 

홀수 번째 P 태그 선택

<style> 
p:nth-child(odd) {
  background: red;
}
</style>
  • 결과

홀수 번째 P 태그 선택

짝수 번째 p 태그 선택

<style> 
p:nth-child(even) {
  background: red;
}
</style>
  • 결과

짝수 번째 p 태그 선택

 

추가 :nth-child에 대한 설명과 실행 사이트

https://www.w3schools.com/cssref/sel_nth-child.asp

반응형