-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclearboth.html
60 lines (50 loc) · 979 Bytes
/
clearboth.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
<!DOCTYPE html>
<html>
<head>
<style>
.pageWrapper {
width:844px;
}
.header{
background-color: red;
width: 844px;
height:86px;
}
.menu{
width: 844px;
}
.maincontent{
width:664px;
float:left;
}
.sidebar{
background-color: grey;
width:180px;
float:left;
}
.footer{
background-color: red;
width: 844px;
}
</style>
</head>
<body>
<h1>The Clear both Property</h1>
<div class="pageWrapper">
<div class="header">
this is header
</div>
<div class="menu">
this is menu
</div>
<div class="maincontent">
this is main content
</div>
<div class="sidebar">
this is side bar
</div>
<div class="footer">
this is footer
</div>
</body>
</html>