본문 바로가기

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

HTML·CSS

CSS 선택자, 번갈아 선택하기 nth-last-child(2n+1) , nth-child(2n+1)

li:nth-last-child(2n+1) 마지막에서 2의배수

li:nth-child(2n+1) 첫번째부터의 2의배수

<STYLE>
    p:nth-last-child(2n+1) {background: red;}
    p:nth-child(2n+1){background: yellow;}
</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>

 

리스트의 갯수가 조건에 맞아야지만 적용된다.