|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
|
2 <style type="text/css"> |
|
3 |
|
4 .multicol { |
|
5 margin: 1em; |
|
6 border: solid silver; |
|
7 width: 500px; |
|
8 -moz-column-width: 100px; |
|
9 -moz-column-gap: 0; |
|
10 height: 100px; |
|
11 position: relative; |
|
12 } |
|
13 |
|
14 #clear { |
|
15 top: 50px; |
|
16 border-top: 4px solid orange; |
|
17 width: 100%; |
|
18 position: absolute; |
|
19 z-index: -1; |
|
20 } |
|
21 |
|
22 .float { |
|
23 border: aqua 30px; |
|
24 border-style: none solid; |
|
25 height: 300px; |
|
26 } |
|
27 |
|
28 .pad { |
|
29 padding-top: 50px; |
|
30 } |
|
31 </style> |
|
32 |
|
33 <body> |
|
34 |
|
35 <div class="multicol"> |
|
36 <div id="clear"></div> |
|
37 <div class="pad"></div> |
|
38 <div class="float"> </div> |
|
39 </div> |