hi psychorat
wie schaut denn die html- und css-datei aus.
HTML : test.html
Code:
<html>
<head>
<title>test</title>
<link rel="stylesheet" href="test.css" type="text/css">
</head>
<body>
Welche HTML-Elemente fallen Ihnen ein, und was bewirken sie:
<textarea name="user_eingabe" cols="50" rows="2">geben sie hier den text ein...</textarea>
</p>
</body>
</html>
CSS style.css
Code:
body,
textarea {
background-color:#071727;
scrollbar-base-color:#ffff33;
scrollbar-3dlight-color:#071727;
scrollbar-arrow-color:#FFFF33;
scrollbar-darkshadow-color:#071727;
scrollbar-face-color:#071727;
scrollbar-highlight-color:#071727
scrollbar-shadow-color:#071727;
scrollbar-track-color:#071727;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
color: #ffff33;
text-decoration: none
}
ob das jetzt alles im IE funktioniert, hab ich nicht getestet. da *scrollbar* IE-spezifisch ist, stellt das der Mozilla nicht dar. Schriftgrösse, farbe und style funktionieren.
text-decoration ist für links, das muss man dann mit
a { text-decoration:none; } separat definieren.
lg Christian