-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss_test03.html
112 lines (103 loc) · 3.15 KB
/
css_test03.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css_test03</title>
<style>
body {
background: url('a1.jpg');
background-size: cover;
}
.test1 {
font-size: 5em;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
color: rgb(173, 190, 201);
text-shadow: 5px 5px 10px rgb(56, 66, 96); /* x, y, 번짐정도, 색 */
-webkit-text-stroke: 1.5px rgb(62, 93, 142);
letter-spacing: 0.2em; /* 자간 */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); /* - 왼쪽, - 위쪽 */
}
nav {
margin-top: 30px;
margin-left: 50px;
width: 400px;
}
ul {
list-style: lower-greek inside; /* 다 다르게 하고 싶으면 class로 / 같이 쓸 수 있음 */
margin-top: 30px;
margin-left: 50px;
width: 300px;
}
ol {
list-style: none; /* 번호 매기지 않으면 inside도 필요 없음 */
}
li {
font-family: 나눔스퀘어;
border: 1px solid black;
padding: 10px 50px; /* 모두 같게, 상하 좌우, 상 하 좌우 */
margin: 10px;
background-color: rgba(231, 231, 231, 0.315);
letter-spacing: 0.5px; /* 자간 */
}
.center {
display: flex;
align-items: center;
justify-content: center;
}
table {
border: 1px solid white;
caption-side: bottom;
border-collapse: collapse; /* (중요)선 두 개 합치기 */
/* border-spacing: 20px; (선과 선 넓이) */
}
td {
border: 1px solid white;
padding: 20px 50px; /* 안쪽 여백 */
}
.pyo {
color: white;
}
.cap {
color: white;
}
</style>
</head>
<body>
<div class="test1">KIM AE-CHI</div>
<h2>2022-1 수강 과목</h2>
<ul>
<li onmouseover="style='background:black'" onmouseout="style='background:white;'">웹콘텐츠 제작</li>
<li>디지털오디오제작기초</li>
<li>인간컴퓨터상호작용</li>
<li>프로그래밍개론</li>
</ul>
<nav>
<ol>
<li class="center">소셜그래픽</li>
<li class="center">영상스토리텔링제작</li>
<li class="center">성공하는문화콘텐츠개발소재</li>
</ol>
</nav>
<table>
<caption class="cap">표 연습</caption>
<tr class="pyo">
<td rowspan="2">1</td>
<td>2222</td>
<td>33333333</td>
<td>4444444444444</td>
</tr>
<tr class="pyo">
<td rowspan="2">2222</td>
<td colspan="3">33333333</td>
</tr>
<tr class="pyo">
<td>1</td>
<td>33333333</td>
<td>4444444444444</td>
</tr>
</table>
</body>
</html>