Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS의 역할 :nth-last-of-type(n) 선택기

<시간/>

CSS :nth-last-of-type(n) 선택기를 사용하여 마지막 자식부터 계산하여 부모의 두 번째

요소인 모든

요소를 선택합니다.

예시

다음 코드를 실행하여 :nth-last-of-type(n) 선택기를 구현할 수 있습니다.

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:nth-last-of-type(2) {
            background: blue;
            color: white;
         }
      </style>
   </head>
   <body>
      <p>This is demo text 1.</p>
      <p>This is demo text 2.</p>
      <p>This is demo text 3.</p>
      <p>This is demo text 4.</p>
      <p>This is demo text 5.</p>
   </body>
</html>