본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

HTML·CSS

CSS 선택자, 번갈아 선택하기 nth-of-type()

h1:nth-of-type(2n+1)
h1:nth-last-of-type(2n+1)

<STYLE>
    p:nth-of-type(2n+1){background: yellow;}
    p:nth-last-of-type(2n+1){background: red;}
</STYLE>
    <P class="stand">STANDOUT</P>
    <P class="out">STANDOUT</P>
    <P class="out">STANDOUT</P>
    <P class="stand">STANDOUT</P>
    <P class="out">STANDOUT</P>
    <P class="out">STANDOUT</P>
    <H3>STANDOUT</H3>