Hi,
The HTML at the end of this message will render erroneously on IE (at
least 5.0) and prperly on Mozilla (as I've been told). That does not
surprise me, but I *would* like to find some workaround to get it to
display properly...
The thing is: on IE5 (Windows) the second "hello" is just not rendered
(ok, at least I try to select all text with Ctrl-A...) when the empty
<style> element is in the document. If I remove that element, it renders
OK.
Is this a known bug, and if so, is there a workaround?
(I need the "width" on the floating label as I'm trying to reproduce
some specific lists as they are now marked-up in a PDF-file)
Regards,
Herman
================
<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<table>
<tr><td>
<div style="float:left">hello</div>
<div style="margin-left: 1cm">world</div>
</td></tr>
</table>
<table>
<tr><td>
<div style="float:left; width: 0.95cm;">hello</div>
<div style="margin-left: 1cm">world</div>
</td></tr>
</table>
<div style="float:left; width: 0.95cm;">hello</div>
<div style="margin-left: 1cm">world</div>
</body>
</html>