-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS3_Test3.html
More file actions
38 lines (38 loc) · 893 Bytes
/
CSS3_Test3.html
File metadata and controls
38 lines (38 loc) · 893 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS3 struct selector</title>
<style type="text/css">
ul{overflow:hidden;}
li{list-style:none;float:left;padding:15px;}
li:first-child{border-radius:10px 0 0 10px;}
li:last-child{border-radius:0 10px 10px 0;}
li:nth-child(2n){background-color:pink;}
li:nth-child(2n+1){background-color:skyblue;}
#list > ul > li:first-child > a {background: yellow;}
</style>
</head>
<body>
<div>
<ul>
<li>첫번째</li>
<li>두번째</li>
<li>세번째</li>
<li>네번째</li>
<li>다섯번째</li>
<li>여섯번째</li>
<li>일곱번째</li>
</ul>
</div>
<div id="list">
<ul>
<li><a href="#">주의사항</a></li>
<li><a href="#">주의사항</a></li>
<li><a href="#">주의사항</a></li>
<li><a href="#">주의사항</a></li>
<li><a href="#">주의사항</a></li>
</ul>
</div>
</body>
</html>