-
Notifications
You must be signed in to change notification settings - Fork 0
/
selector5.html
64 lines (46 loc) · 1.5 KB
/
selector5.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/* div테그보다는 클래스 이름에 접근하는게 훨씬 더 낫다.
그렇게 하기 위해서 span테그의 첫번째 자식인 딸기를 찾기 위해서는 span: first-child 이렇게 설정해주면 됨
.fruits span:first-child{
color: red;
}
div는 첫번째가 아니라서 :first-child로는 접근이 안된다
.fruits div:first-child{
color: orange;
}
.fruits h3:last-child {
color: greenyellow;
}
.fruits *:nth-child(3){
color: orange;
} */
/* 짝수 줄에 해당하는 것만 색깔을 입히고 싶다면?
.fruits *:nth-child(2n) {
color: red;
}*/
/* 홀수 줄에 해당하는 것만 색깔을 입히고 싶다면?
.fruits *:nth-child(2n-1) {
color: blue;
} */
/* span 테그만 빼고 빨간색으로 표시하려면?
.fruits *:not(span){
color:red;
} */
</style>
</head>
<body>
<div class ="fruits">
<span>딸기</span>
<span>수박</span>
<div>오렌지</div>
<p>망고</p>
<h3>사과</h3>
</div>
</body>
</html>