일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 리눅스
- 보르비스초월
- OpenWrt
- mysql
- 알리익스프레스
- 윈도우10
- iptime
- KB증권
- Rocky
- Apache
- 시놀로지
- 자바스크립트
- 스톤에이지
- 아파치
- ConoHa
- 복현오거리
- centos
- 가상서버호스팅
- 라즈베리파이2
- PHP-FPM
- jQuery
- 킹북이초월
- proxmox
- 램가스초월
- 알뜰폰
- KB국민카드
- SKT
- php
- 티스토리
- 소비전력
- Today
- Total
맛집 여행 캠핑 일상 생활
CSS 여러개의 클래스 중에 몇번째 이후만 다르게 적용 본문
CSS 여러개의 클래스 중에 몇번째 이후만 다르게 적용
다중 class 에서 특정 위치부터 nth-of-type 을 이용해서 스타일을 다르게 적용할 수가 있습니다.
<style>
div.idiv { background-color:red; }
div.idiv:nth-of-type(n+4) { background-color:yellow; }
</style>
<div class="idiv"> 1 line </div>
<div class="idiv"> 2 line </div>
<div class="idiv"> 3 line </div>
<div class="idiv"> 4 line </div>
<div class="idiv"> 5 line </div>
<div class="idiv"> 6 line </div>
<div class="idiv"> 7 line </div>
위 예제는 4번째 부터 적용하라는 의미 입니다.
아래는 2, 4, 6 번째를 적용하는 예제입니다.
<style>
div.idiv { background-color:red; }
div.idiv:nth-of-type(2) { background-color:yellow; }
div.idiv:nth-of-type(4) { background-color:yellow; }
div.idiv:nth-of-type(6) { background-color:yellow; }
</style>
<div class="idiv"> 1 line </div>
<div class="idiv"> 2 line </div>
<div class="idiv"> 3 line </div>
<div class="idiv"> 4 line </div>
<div class="idiv"> 5 line </div>
<div class="idiv"> 6 line </div>
<div class="idiv"> 7 line </div>
'HTML.CSS' 카테고리의 다른 글
DIV 팝업레이어 뒷쪽에 클릭이 안되게 처리 (0) | 2018.09.20 |
---|---|
HTML/CSS INPUT readOnly 효과 (0) | 2017.09.14 |
CSS IE 에서 스크롤바가 안나타나는 경우 (0) | 2017.01.17 |
HTML/CSS IE 7, 8 @media screen 안먹는 문제 (0) | 2016.12.13 |
HTML/CSS LI 태그 도트이미지가 크롬과 IE가 다르게 보이는 문제 (0) | 2016.11.03 |