n번째 사용법: 1. ":nth-child(n)"는 n번째 하위 요소와 일치합니다. 2. ":nth-last-child(n)"는 n번째 하위 요소와 상호 일치합니다. 3. ":nth-of- type(n)"은 동일한 유형의 n번째 하위 요소와 일치합니다. 4. ":nth-last-of-type(n)".
이 튜토리얼의 운영 환경: Windows 10 시스템, CSS3&&HTML5 버전, Dell G3 컴퓨터.
1. :nth-child(n)
:nth-child(n) 선택기는 상위 요소의 n번째 하위 요소와 일치하며 제한이 없습니다. 요소 유형.
n은 숫자, 키워드 또는 수식일 수 있습니다.
예제는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> p:nth-child(2) { background:#ff0000; } </style> </head> <body> <h1>这是一个标题</h1> <p>这是第一个段落。</p> <p>这是第二个段落。</p> <p>这是第三个段落。</p> <p>这是第四个段落。</p> <p><b>注意:</b> Internet Explorer 8 以及更早版本的浏览器不支持 :nth-child()选择器.</p> </body> </html>
출력 결과:
2, :nth-last-child(n)
:nth-last-child(n) 선택자는 요소와 일치합니다. N개 하위 요소의 각 요소는 요소 유형에 관계없이 마지막 하위 요소부터 계산됩니다.
n은 숫자, 키워드 또는 수식일 수 있습니다.
예제는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> p:nth-last-child(2) { background:#ff0000; } </style> </head> <body> <p>The first paragraph.</p> <p>The second paragraph.</p> <p>The third paragraph.</p> <p>The fourth paragraph.</p> <p><b>注意:</b> Internet Explorer 8 以及更早版本的浏览器不支持:nth-last-child()选择器.</p> </body> </html>
출력 결과:
3, :nth-of-type(n)
:nth-of-type(n) 선택기는 n번째 항목과 일치합니다. 같은 수준의 같은 유형의 형제.
n은 숫자, 키워드 또는 수식일 수 있습니다.
예제는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> p:nth-of-type(2) { background:#ff0000; } </style> </head> <body> <h1>This is a heading</h1> <p>The first paragraph.</p> <p>The second paragraph.</p> <p>The third paragraph.</p> <p>The fourth paragraph.</p> </body> </html>
출력 결과:
4, :nth-last-of-type(n)
:nth-last-of-type(n) 선택기는 같은 유형 의 두 번째 n번째 형제 요소입니다.
n은 숫자, 키워드 또는 수식일 수 있습니다.
예제는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> p:nth-last-of-type(2) { background:#ff0000; } </style> </head> <body> <h1>This is a heading</h1> <p>The first paragraph.</p> <p>The second paragraph.</p> <p>The third paragraph.</p> <p>The fourth paragraph.</p> <p><b>注意:</b> Internet Explorer 8以及更早版本的浏览器不支持:nth-last-of-type() 选择器.</p> </body> </html>
출력 결과:
(학습 영상 공유: css 영상 튜토리얼)
위 내용은 CSS에서 n번째 사용법은 무엇입니까의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!