blob: 73ab6535726193ce63bac0d6a4b7c1f5ab5bdcac (
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
62
63
64
65
66
|
<!DOCTYPE html>
<style>
.multicol {
width: 480px;
height: 200px;
border: 3px solid black;
line-height: 20px;
}
.column {
float: left;
width: 160px;
}
.float {
padding: 10px;
background-color: skyblue;
}
.left { float: left; }
.right { float: right; }
</style>
<p>There should be two blue floats in each of the three columns below, L's should float to the left,
and R's should float to the right.</p>
<div class="multicol">
<div class="column">
First<br>
First<br>
First<br>
First<br>
<div class="float left">L1</div>
<div class="float right">R1</div>
First<br>
First<br>
First<br>
First<br>
First<br>
First<br>
</div>
<div class="column">
<div class="float left">L2</div>
<div class="float right">R2</div>
Second<br>
Second<br>
Second<br>
Second<br>
Second<br>
Second<br>
Second<br>
Second<br>
Second<br>
Second<br>
</div>
<div class="column">
Third<br>
Third<br>
Third<br>
Third<br>
Third<br>
Third<br>
Third<br>
Third<br>
<div class="float left">L3</div>
<div class="float right">R3</div>
Third<br>
Third<br>
</div>
</div>
|