Unfortunately, Netscape 4.7x (Windows) renders your table cells with a black background.
There may be a couple of tricks that might help.
Consider embedding CSS into the content instead of using an external stylesheet (which shouldn't be too difficult as you're using PHP).
(Update: ichimunki raises a good point. Sadly, Netscape 4.7 has a bug regarding linked stylesheets. This is only one reason why I occasionally rant about non-compliant browsers.)
Make sure you define rules for <TD>, <TH>, and <TR>.
Make sure you use and close your <P> tags.
Note sure if you've seen this site, but it contains a lot of CSS related information, including a page documenting many of the most egregious problems.
Hope this helps...
--f
P.S. As far using CSS and cookies go, I'm with Blue: Go for it.
| [reply] |
My own bias would be against embedding style information into the HTML document unless absolutely necessary to assist the user agent in displaying the information (i.e. layout is integral to the information being displayed). Usually this is not the case. Putting the CSS into its own document makes the original document smaller, and heightens awareness that style is not content on the part of the designer.
| [reply] |
| [reply] |
Unless you're like me with aspirations towards XHTML-compliance, then closing all of them is somewhat mandatory. :)
| [reply] |