Scrollbarfarbe

Status
Nicht offen für weitere Antworten.
Ich habe das jetzt schon bei mehreren Seiten gesehen, dass die Scrollbar eine andere Farbe hatte. Wie mache ich es, dass die Scrollbar genauso aus sieht wie in dem Bild im Anhang?

Danke schonmal im Vorraus
MagicMasterII
 

Anhänge

  • scrollbar.jpg
    scrollbar.jpg
    1,6 KB · Aufrufe: 80
Hi ganz einfach:

In HTML Code

PHP:
<html>
<head>
<title>scrollbar</title>
<style>
body
{
scrollbar-DarkShadow-Color:#666666;;
scrollbar-Track-Color:#FFFFFF;
scrollbar-Face-Color:#666666;
scrollbar-Shadow-Color:#666666;
scrollbar-Highlight-Color:#666666;
scrollbar-3dLight-Color:#000000;
scrollbar-Arrow-Color:#FF6600;
}
</style>
</head>
<body>
</body>
</html>

Oder in CSS nur das...
PHP:
body
{
scrollbar-DarkShadow-Color:#666666;;
scrollbar-Track-Color:#FFFFFF;
scrollbar-Face-Color:#666666;
scrollbar-Shadow-Color:#666666;
scrollbar-Highlight-Color:#666666;
scrollbar-3dLight-Color:#000000;
scrollbar-Arrow-Color:#FF6600;
}
...in die css-datei einfügen

Natürlich kannst du die farben auch ändern ;-)

MfG i-mehl
 
Status
Nicht offen für weitere Antworten.
Zurück