CSS - Farbige Scrollleiste
Ab Firefox 65 ist es möglich die Scrollleisten einzufärben.

<style>
div#container {
height: 100px;
overflow: Auto;
scrollbar-color: blue lightgray;
}
</style>
<div id="container">Lorem Ipsum ...</div>
Es werden bisher nur Farbnamen (red, green, blue, yellow, …) unterstützt.
Mit der Angabe: scrollbar-width: thin;
wird eine schmale Scrollleiste angezeigt.

Bausteine Alle Anzeigen
Eine zufällige Auswahl von Codeschnipseln
aus den Bereichen HTML, CSS,
PHP, JavaScript und MySQL.
<source> Quelle
CSS - Blinkende Inhalte mit Keyframes
PHP - Eine Query String Variable entfernen