Hint: put CSS1/CSSP markup in HTML comments!

Put the contents of the STYLE element in HTML comments. This hides the CSS1/CSSP markup from older browsers, so it is not seen by user. Example:

<STYLE TYPE="text/css"><!--
#foo { color: red }
--></STYLE>

Speaker Notes