The following style sheet is the only CSS used in this document:
<style type="text/css">
div#one{color:green;}
div#two{color:green;}
span#three{color:green;}
div#three{color:red;} /* shouldn't match anything */
</style>
DIV, Netscape 4.x displays this as red.
Apparently, Netscape 4.x interpolates white space between the type
and ID selectors, interpreting the result
as a descendant selector, i.e., it sees the fourth rule as div #three{color:red;},
which would match Example 3.