본문 바로가기

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

HTML·CSS

CSS 선택자 첫/마지막번째, *-of-type

h1:first-of-type : h1형제중  첫 번째 h1 태그

h1:last-of-type : h1형제중  마지막 h1 태그

<STYLE>
    p:first-of-type{background: yellow;}
    p:last-of-type{background: red;}
</STYLE>
    <P class="stand">STANDOUT</P>
    <P class="out">STANDOUT</P>
    <P class="out">STANDOUT</P>
    <H3>STANDOUT</H3>