Hi,
fuer alle, die StyleSheets für IE4 und NN4 verwendet, hier noch die dynamiasche Variante,
da ie4 fast aööes von css level 2 beherscht und nn4 eben nicht:
als default wird das cssfuer netscape geladen und wenn der ie da ist, wird es dazu geladen
bzw.ersetz das bisher geladenen
<LINK HREF="nn4-style.css" SRC="nn4-style.css" REL="STYLESHEET" TYPE="text/css"
TITLE="Stylesheet for HTML4" MEDIA="screen">
<SCRIPT LANGUAGE="JavaScript">
var BrowserName = navigator.appName;
var BrowserVersion = parseInt(navigator.appVersion);
var IE4 = (BrowserName == "Microsoft Internet Explorer" && BrowserVersion >= 4);
if(IE4){
document.writeln('<LINK HREF="msie4-style.css" SRC="msie4-style.css" REL="STYLESHEET" TYPE="text/css"');
document.writeln('TITLE="Stylesheet for HTML4" MEDIA="screen">');
}
</SCRIPT>
auszug aus der css fuer ie4, die eine reine ascii datei ist:
A:link { text-decoration: none;
color: #000080; }
A:visited { text-decoration: none;
color: #696969; }
A:active { text-decoration: none;
color: #87CEED; }
BODY { background-color: #FFFFFF;
margin-top: 10px;
margin-left: 0px;
margin-bottom: 0px;
font-size: 11pt;
line-height: 14pt;
font-variant: normal;
font-style: normal;
font-family: arial,verdana,times;
color: #ff4500;
text-align: left;
display: block; }