css 기본 개념

선택자

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
// 아이디 선택자
#id_of_the_element{
//contents
}

//클래스 선택자
.class_of_the_element{
//contents
}

// 속성 선택자
input[type=text]{
// contents
}

// 자손 선택자
header>h1{

}

// 반응, 상태, 구조 선택자
div:first-child{

}

선택자:active{

}
angular pipe의 활용 css dev note

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×