how to add color the browser scrollbar

  • Thread starter Thread starter Shun
  • Start date Start date
S

Shun

Hello,
How to the add a blue color scrollbar to the browser Left and bottom.

Thanx
Shun
 
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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top