:first-child 선택자는 요소중에 첫 번째 요소에 별도의 속성을 정의할 수 있습니다.
:first-child { }
기본값:없음, 상속:안됨, 버전:CSS2
- 첫째
- 둘째
- 셋째
- 넷째
- 다섯째
- 여섯재
<ul class="demo_ul"> <li class="demo">첫째</li> <li class="demo">둘째</li> <li class="demo">셋째</li> <li class="demo">넷째</li> <li class="demo">다섯째</li> <li class="demo">여섯재</li> <style> li:first-child { font-size:20px; color:#f40; } or ul > :first-child { font-size:20px; color:#f40; } </style>CSS :last-child
'Internet > CSS' 카테고리의 다른 글
텍스트 세로 가운데 정렬하는 몇 가지 방법 (0) | 2018.12.26 |
---|---|
CSS Links (0) | 2014.10.15 |
CSS line-height (0) | 2014.02.13 |
CSS :last-child (0) | 2014.02.13 |
CSS :first-line (0) | 2014.02.13 |
CSS :first-letter (0) | 2014.02.12 |
CSS z-index (0) | 2014.02.11 |
CSS opacity (0) | 2014.02.09 |