-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid2.css
More file actions
48 lines (48 loc) · 775 Bytes
/
grid2.css
File metadata and controls
48 lines (48 loc) · 775 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
body{
margin: 0;
}
a {
color: black;
text-decoration: none;
}
h1 {
font-size: 45px;
text-align: center;
border-bottom: 1px solid gray;
margin: 0;
padding: 20px;
}
ol{
border-right: 1px solid gray;
width: 100px;
margin: 0;
padding: 20px;
}
#grid{
display: grid;
grid-template-columns: 150px 1fr;
}
/*
padding넣기 연습!
영역을 선정할 때 구체적으로 하는 게 좋다!
이유: 영역을 분명하게 하기 위해서
(부모부터 자신까지)
*/
#grid ol {
padding-left: 33px;
}
#grid #article{
padding-left: 25px;
padding-right: 25px;
}
@media(max-width:800px){
#grid{
display: block;
}
ol {
border-right: none;
}
h1 {
border-bottom: none;
}
}