
This is a legacy document, and retained on the site in order to avoid link rot. The content is likely no longer (a) accurate, (b) representative of the views and philosophies of current site management, or (c) up to date.
Bug Demo
Spaceless Headers
This Netscape bug may be overcome by ensuring that whitespace separates style elements. Given the style:
<style type="text/css">h1{font-size: 2em;}h2{font-size: 1.75em;}h3{font-size: 1.58em;}</style>
Netscape erroneously increases the font size of each header, like the following H1, H2, and H3 headers:
<h1>Header1</h1><h2>Header2</h2><h3>Header3</h3>
Header1
Header2
Header3
Separating the headers, like:
<h1>Header1</h1><h2>Header2</h2><h3>Header3</h3>
yields the expected rendering.
Header1
Header2
Header3
This Netscape bug may be overcome by ensuring that whitespace separates style elements. Given the style: