S Shun Jan 12, 2006 #1 Hello, How to the add a blue color scrollbar to the browser Left and bottom. Thanx Shun
G Guest Jan 12, 2006 #2 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>
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>