CSS_Style_Quiz.css
1.15 KB
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
/*
id -> #name (문서 내 유일)
class -> .name (동일 한 속성을 지닐 요소들을 정의)
tag -> name (특정 태그)
selector의 조합
p.box (p 태그 중에 class가 box인것)
p#summary (p 태그 중에 id가 summary 인것)
Grouping
h1, h2, h3 color : red;} (모두 지정함)
Nesting
p span : (p 태그 안에있는 span 태그 )
p > span : (p 태그 안에있는 sapn 태그 )
*/
html{
background-color: white;
color: black;
padding: 20px 0;
font: 14px/28px "맑은 고딕", "Malgun Gothic", "굴림", "Gulim", Verdan, Arial, Tahoma;
}
img.mainimage{
width: 20%;
display: block;
margin-left: auto;
margin-right: auto;
}
h1.title {
font-size: 3em;
text-align: center;
width: 90%;
border-radius: 10px;
padding: 20px 30px;
margin: 30px auto;
background-color: lightblue;
text-align: center;
color: green;
}
h3{
background-color:lightgoldenrodyellow;
text-align: center;
border-radius: 10px;
width: 15%;
margin: 20px;
}
ul.squre{
list-style-type: square;
}
table {
border-collapse: collapse;
margin: 40px;
}
table, th, td {
border: 1px solid black;
}