Hey, again I have a css question, Is there a way to hide css code from netscape? At the moment I dont have anything to hide it so when I set the height on auto (enven with content) it sets its height to 0... yah... Any ideas?
hiding css from netscape
Use PHP. It can detect the browser and you may do such a thing.
Another simpler way is to have your CSS in an external file, then use
instead of <link>. Older versions of Netscape doesn't understand what @import means, so it won't load the external file.
| Code: |
| <style type="text/css">@import url(style.css);</style> |
instead of <link>. Older versions of Netscape doesn't understand what @import means, so it won't load the external file.
