Forum Moderators: open
In general, NN4 is really buggy when this happens. At best it forgets styles after a table, which is easily fixed with some redundant styles. At worst it throws display elements all over the screen, overlapping text and images. What a friend of mine calls a "dog's breakfast".
I found that placing the tables within their own div tags works wonders. Instead of this:
<div id="absolute">
<p>Content content content.
<table></table>
<p>More content.
</div>
I do this:
<div id="absolute">
<p>Content content content.
<div>
<table></table>
</div>
<p>More content.
</div>
In every case so far, the layout snaps back to where I intended. I'm guessing the extra div tags give Netscape just enough extra information to render things correctly.
(edited by: tedster at 9:47 pm (utc) on Feb. 12, 2002)