how to add color the browser scrollbar

  • Thread starter Thread starter Shun
  • Start date Start date
Example:

<html>
<head>
<style type="text/css">
body
{
scrollbar-face-color: blue;
scrollbar-highlight-color: blue;
scrollbar-shadow-color: lightblue;
scrollbar-arrow-color: lightblue;
scrollbar-track-color: white;
scrollbar-darkshadow-color: blue;
scrollbar-3d-light-color: blue
}
</style>
</head>
<body>
<table width="1000" height="1000">
<tr>
<td>Text</td>
</tr>
</table>
</body>
</html>
 
Back
Top