Log In

Email:
Password:
Keep me logged in

Forgot Password

Email:




Social Media
     
CategoriesCSS (5)
jQuery (73)
PHP (30)
.htaccess (4)
Sponsored Links


Webkit Custom Scrollbar

Demo | Browse Category | Monday, August 1, 2011 by




Code:
<html>
<head>
<style>
.text {
border: 1px #32baed solid;
color: #12495d;
font: 100% Century Gothic;
resize: none;
width: 600px;
}
.text::-webkit-scrollbar {
width: 7px;
}
.text::-webkit-scrollbar:horizontal {
height: 7px;
}
.text::-webkit-scrollbar-track {
background: #e8f9ff;
}
.text::-webkit-scrollbar-thumb {
background: #32baed;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.text::-webkit-scrollbar-thumb:active {
background: #12495d;
}
.text::-webkit-scrollbar-track:window-inactive {
background: #ffffff;
}
.text::-webkit-scrollbar-thumb:window-inactive {
background: #e8f9ff;
}

</style>
</head>
<body>
<textarea class="text">
</textarea>

</body>
</html>
Views: 433 Likes: 0 Dislikes: 0