css_practice1.css
969 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
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
h1
{
text-align: center;
}
a:link, a:visited
{
text-decoration: none;
color: black;
}
a:hover
{
color: hotpink;
}
a.a1:link, a.a1:visited
{
background-color: #50c964;
color: white;
padding: 15px 500px;
text-align: center;
display: inline-block;
border-radius: 15px; /*상자의 끝을 둥글게 굴려주는 역할. 숫자가 클 수록 많이 굴려짐*/
}
a.a1:hover
{
background-color: #5060c9;
color: #000;
}
img
{
width: 375px;
padding: 10px;
border: 5px solid gray;
margin: 0;
}
/*클래스 쓰는 방법*/
li.inline_practice
{
display: inline;
margin-right: 10%;
}
li.member:first-letter
{
font-size: 20px;
font-style: italic;
}
p
{
/*왼쪽에만 선을 그림*/
border-left: 20px solid #50c964;
}
p:first-line
{
color: hotpink;
}
table
{
/*margin: 50px 50px; /*위와 왼쪽에 여백을 줌*/
width: 70%;/*간격을 띄움*/
}
td, tr
{
padding:50px;
background-color: gray;
text-align: center;
}