Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <title>My Example</title> <!-- CSS --> <style type="text/css"> textarea { -ms-scrollbar-base-color: orange; } </style> </head> <body> <!-- HTML --> <textarea cols="20" rows="4"> 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>