[CSS] CSS Scrollbalken

Startpost-Retter
Hallo,

ich habe folgenden Css-code in meiner Datei, doch leider wird der Scrollbalken noch immer nicht in der angegebenen Farbe angezeigt.

Liegt das an Bplaced?

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
 <style type="text/css">
   <!--
   body {
font-family: Arial, Helvetica, sans-serif;
font-size: 9pt;
color: #D8E4CB;

scrollbar-3dlight-color: #80A46A;
 scrollbar-arrow-color: #D8E4CB
 scrollbar-darkshadow-color: #80A46A;
 scrollbar-face-color: #80A46A;
 scrollbar-highlight-color: #80A46A;
 scrollbar-shadow-color: #80A46A;
 scrollbar-track-color: #80A46A;
 }
 H1 { font-family : Arial, Helvetica, sans-serif;
font-size : 10pt;
text-align: center;
padding: 2;
border-top: none;
border-bottom: solid  #D8E4CB 1px;
border-bottom-style: dashed;
border-left: none;
border-right: none; }
a:link {color:#D8E4CB; text-decoration:none}
a:visited {color:#D8E4CB; text-decoration:none}
a:active {color:#B4CB9A; text-decoration:none}
a:hover {color:#D8E4CB; text-decoration:none;font-weight:bold; }
    =-->
   </style>
.chilli
Da fehlte ein ; - habs mal ausgebessert Augenzwinkern

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
 <style type="text/css">
   <!--
   body {
font-family: Arial, Helvetica, sans-serif;
font-size: 9pt;
color: #D8E4CB;

scrollbar-3dlight-color: #80A46A;
 scrollbar-arrow-color: #D8E4CB;
 scrollbar-darkshadow-color: #80A46A;
 scrollbar-face-color: #80A46A;
 scrollbar-highlight-color: #80A46A;
 scrollbar-shadow-color: #80A46A;
 scrollbar-track-color: #80A46A;
 }
 H1 { font-family : Arial, Helvetica, sans-serif;
font-size : 10pt;
text-align: center;
padding: 2;
border-top: none;
border-bottom: solid  #D8E4CB 1px;
border-bottom-style: dashed;
border-left: none;
border-right: none; }
a:link {color:#D8E4CB; text-decoration:none}
a:visited {color:#D8E4CB; text-decoration:none}
a:active {color:#B4CB9A; text-decoration:none}
a:hover {color:#D8E4CB; text-decoration:none;font-weight:bold; }
    =-->
   </style>
1Sm!le
Die Befehle funktionieren nur in Internet Explorern ...
.chilli
Vll. klappts, wenn du hinter die letzten Angaben in den {} mit ; abschließt. Ist das einzige, was mir noch einfällt XD
Medic Droid
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
 <style type="text/css">
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #D8E4CB;
}

html {
	scrollbar-face-color: #80A46A;
	scrollbar-shadow-color: #80A46A;
	scrollbar-highlight-color: #80A46A;
	scrollbar-3dlight-color: #80A46A;
	scrollbar-darkshadow-color: #80A46A;
	scrollbar-track-color: #80A46A;
	scrollbar-arrow-color: #D8E4CB;
}

h1 { 
	font-family : Arial, Helvetica, sans-serif;
	font-size : 10pt;
	text-align: center;
	padding: 2px;
	border-top: none;
	border-bottom: solid  #D8E4CB 1px;
	border-bottom-style: dashed;
	border-left: none;
	border-right: none; 
	}

a:link {color:#D8E4CB; text-decoration:none}
a:visited {color:#D8E4CB; text-decoration:none}
a:active {color:#B4CB9A; text-decoration:none}
a:hover {color:#D8E4CB; text-decoration:none;font-weight:bold; }
   </style>


Wieso hast du die CSS in einen (unfertigen) Komemntar gepackt?
Medic Droid
Zitat:
Original von Mutzelchen
Ich dachte, dass so auch ältere Browser das CSS besser lesen können?

Danke, auf jeden Fall klappt es jetzt!

In Kommentaren kann das, mM nach, kein browser.