Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <title>My Example</title> <!-- CSS --> <style type="text/css"> textarea.custom-scrollbar { -ms-scrollbar-3dlight-color:black; -ms-scrollbar-arrow-color:black; -ms-scrollbar-track-color:black; -ms-scrollbar-darkshadow-color:gray; -ms-scrollbar-face-color:orange; -ms-scrollbar-highlight-color:gold; -ms-scrollbar-shadow-color:brown; } </style> </head> <body> <!-- HTML --> <textarea cols="20" rows="4" class="custom-scrollbar"> Here's enough text to make this textarea grow scrollbars.... HTML scrollbars, scrollbar color, change browser scrollbars, css scrollbar, change color of the scrollbar... </textarea> </body> </html>