summaryrefslogtreecommitdiff
path: root/works/place_float_below.html
blob: 2153b5815ba628af18494cd2e5c8c77550105354 (plain)
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd">
<html><head><style type="text/css">

#container {
	width: 989px;
	}

#right {
	float: left;	
	width: 170px;
	height: 600px;
	background-color: blue;
	}
#left {
	float: left;	
	width: 180px;
	height:600px;
	background:yellow;
	}
#center {
	float: left;
	width: 608px;
	height: 600px;
	background:pink;
	}
.content {
	width:100%;
}

.top-ad-space {
	height: 20px;
	background:orange;
}

.top-contentright {
	height:100px;
	width: 42%;
	background:red;
	float: right;
	
}
</style>

<body id="blogs">
<div id="container">
      <div class="top-ad-space">
          <div class="top-contentright">
            Right float
          </div>
      </div>
      <div id="left" style="color:black;">
        Left col
      </div>
      <div id="center" style="color:black;">
        Center col
      </div>
      <div id="right" style="color:black;">
        Right col
      </div> 
    </div>