Netscape 6.x doesn’t display CSS repeating backgrounds properly, how to fix
You may run across a fairly undocumented bug while developing web sites in CSS. The background you’ve defined in your CSS doesn’t want to repeat. Typically you could just use the “clear:both” attributes but it fails too. A simple fix is to put a regular HTML 4.0 tag like <BR> in your code and apply the style manually. Like this <br style=”clear:both;”> fakes the browser into working anyway and tada! you got …
More+