-
Notifications
You must be signed in to change notification settings - Fork 15
/
index 목차3_eden.html
64 lines (63 loc) · 1.45 KB
/
index 목차3_eden.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<style>
body {
background-color: #cff;
}
.group1 {
min-height: 500px;
background-color: #9ff;
border-right: 3px solid #80ffff;
padding: 5px;
}
.group2 {
min-height: 500px;
background-color: #b3ffff;
padding: 5px;
}
.ol_1 {
margin: 5px 0px 5px 0px;
padding: 0px 0px 0px 20px;
}
#grid{
display:grid;
grid-template-columns: 150px 1fr;
}
/*
*{
border: 1px solid red;
}
*/
/*
그리드
fioat
*/
/*
코드공유 사이트 https://codepen.io/
*/
</style>
</head>
<body>
<div id="grid">
<div class="group1">
<b>목차</b><br>
<ol class="ol_1">
<li><a href="https://happydeveloper.github.io/krkd.eco.coding/index%20%EB%AA%A9%EC%B0%A81_eden.html">
목차 1</a></li>
<li><a href="https://happydeveloper.github.io/krkd.eco.coding/index%20%EB%AA%A9%EC%B0%A82_eden.html">
목차 2</a></li>
<li><a href="https://happydeveloper.github.io/krkd.eco.coding/index%20%EB%AA%A9%EC%B0%A83_eden.html">
목차 3</a></li>
<li><a href="https://happydeveloper.github.io/krkd.eco.coding/index%20%EB%AA%A9%EC%B0%A84_eden.html">
목차 4</a></li>
</ol>
</div>
<div class="group2">
으아아아아
</div>
</div>
</body>
</html>