-
Notifications
You must be signed in to change notification settings - Fork 0
/
template2.html
76 lines (70 loc) · 1.25 KB
/
template2.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
<html>
<head>
<title>template2</title>
</head>
<style>
body{
background-color: purple;
}
ul li.navlist{
display: inline;
line-height: 2em;
padding: 0.5em 2em;
margin: 0px;
border-style: groove;
}
ul li.navlist:hover{
background-color: lightgrey;
}
div.mainContainer{
position: absolute;
left:50%;
top:10%;
background-color: white;
width: 564px;
height: 238px;
}
div.subContainer{
overflow: scroll;
position: absolute;
border-top-style: ridge;
top:22%;
background-color: white;
width: 564px;
height: 300px;
}
img{
width: 26px;
height:26px;
float: left;
padding-right: 10px;
}
div.childContainer{
/*overflow: scroll;*/
position: absolute;
border-top-style: ridge;
border-bottom-style: ridge;
top:30%;
background-color: white;
width: 564px;
height: 100px;
}
</style>
<body>
<div class="mainContainer">
<ul>
<li class="navlist"><img src="nav-icon.png"</li>
<li class="navlist"> </li>
<li class="navlist"> </li>
</ul>
<div class="subContainer">
<div class="childContainer">
</div>
<div class="childContainer">
</div>
<div class="childContainer">
</div>
</div>
</div>
</body>
</html>