I have coded for scroll bar design in CSS using Web-kit that working great on chrome and safari but I need same design for Fire Fox and IE. IE scrollbar width does not change. I have searched on Google but I did not find the proper solution.
I found following code but didn't work
@-moz-document url-prefix(http://),url-prefix(https://) {
scrollbar {
-moz-appearance: none !important;
background: rgb(0,255,0) !important;
}
thumb,scrollbarbutton {
-moz-appearance: none !important;
background-color: rgb(0,0,255) !important;
}
thumb:hover,scrollbarbutton:hover {
-moz-appearance: none !important;
background-color: rgb(255,0,0) !important;
}
scrollbarbutton {
display: none !important;
}
scrollbar[orient="vertical"] {
min-width: 15px !important;
}
}
I also want to change width of scroll bar for IE how can I do
I don't want to use JQuery or its plugin if there is a way doing this in CSS please tell I would really appreciate.