summaryrefslogtreecommitdiff
path: root/works/float-overlap.html
blob: 99c129191e0ffed5e3550b5be8c7b84e900049a2 (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
<html>
<head>
<title>Float Overlap</title>
<style>
body{background-color:#66C;}

#storybody {color:#ffff99;font-size:90%;}
#storybody p{margin:0;color:ff9;padding:10px 0 0 0;}

td.sibtbg{font-size:75%;background-color:#33C;color:#99F}
</style>
</head>





<body>
<div id="storybody">

<p></p>

<p><b>This text should not be overlapped by the floated table</b>. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah.</p>

<table align="right">
<tr>
<td class="sibtbg">
moose moose moose moose moose mooose<br>
moose moose moose moose moose mooose<br>
moose moose moose moose moose mooose<br>
moose moose moose moose moose mooose<br>
</td>
</tr>
</table>


</div>

</body></html>