CSS에서 n번째 사용법은 무엇입니까

WBOY
풀어 주다: 2022-04-27 18:34:39
원래의
3993명이 탐색했습니다.

n번째 사용법: 1. ":nth-child(n)"는 n번째 하위 요소와 일치합니다. 2. ":nth-last-child(n)"는 n번째 하위 요소와 상호 일치합니다. 3. ":nth-of- type(n)"은 동일한 유형의 n번째 하위 요소와 일치합니다. 4. ":nth-last-of-type(n)".

CSS에서 n번째 사용법은 무엇입니까

이 튜토리얼의 운영 환경: Windows 10 시스템, CSS3&&HTML5 버전, Dell G3 컴퓨터.

CSS에서 n번째 사용법은 무엇입니까

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>
로그인 후 복사

출력 결과:

CSS에서 n번째 사용법은 무엇입니까

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>
로그인 후 복사

출력 결과:

CSS에서 n번째 사용법은 무엇입니까

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>
로그인 후 복사

출력 결과:

CSS에서 n번째 사용법은 무엇입니까

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에서 n번째 사용법은 무엇입니까

(학습 영상 공유: css 영상 튜토리얼)

위 내용은 CSS에서 n번째 사용법은 무엇입니까의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
css
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿