Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
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
Tags
more
Archives
Today
Total
관리 메뉴

pais

CSS 셀렉터 본문

카테고리 없음

CSS 셀렉터

SKIAP 2020. 10. 21. 10:02

 

 

1. 태그 selector

p { color:red; }

h1 { color:blue; }

 

2. id selector

#video { width:500px; }

=> id는 현재 페이지에서 unique하게 사용

 

3. class selector

.title { color:red; }

=> 중복해서 사용 가능

 

4. grouping selector

h1, p, span { color:red; }

=> 여러 selector를 동시에 적용

 

5. descendant selector 자손 셀렉터

p span{ color: red; }

=> 자손을 모두 찾는다

 

Comments