I am trying to alter the appearance of the scroll bar on my webpage. Currently, it has a basic rectangular shape, but I would like it to be more oval-shaped with rounded edges at the top and bottom.
Is it possible to achieve this using CSS? Or is it not possible altogether? I specifically need support for IE10. Below is the CSS code I have for the scrollbar:
.scrollbar-vertical
{
top: 0;
right: 0;
width: 17px;
height: 100%;
overflow-x: hidden;
scrollbar-3dlight-color:#999;
scrollbar-arrow-color:white;
scrollbar-base-color:white;
scrollbar-face-color:#999;
border-radius:5px 5px;
}