Ich glaub die Scrollbar-Formatierung von Microsoft hat n Konflikt mit der Dokumenttypangabe!!
Ich hab dem folgenden Beispiel aus Selfhtml noch die Dokumenttypangabe hinzugefügt. So hat aber die Scrollbar-Formatierung keine Wirkung mehr...(is das n Bug im IE??)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html><head><title>scrollbars</title>
<style type="text/css">
body, textarea {
background-color:#8C8CC6;
color:#FFFFFF;
font-family:"Andale Mono",Arial,sans-serif;
scrollbar-base-color:#8C8CC6;
scrollbar-3dlight-color:#FFFFFF;
scrollbar-arrow-color:#FFFFFF;
scrollbar-darkshadow-color:#000000;
scrollbar-face-color:#8C8CC6;
scrollbar-highlight-color:#FFFFFF;
scrollbar-shadow-color:#000000;
scrollbar-track-color:#ACACE6;
}
</style>
</head><body>
<h1 style="text-decoration:underline">Ton in Ton</h1>
<form name="Seite">
<p>Den Text dieser Seite können Sie selber schreiben:</p>
<textarea name="Text" cols="80" rows="200"></textarea>
</form>
</body></html>