javascript - How to remove browser scroll bar without removing selectbox scrollbar -
i have css code removes scroll bar of web application, problem remove selectbox scroll bar too.
css:
::-webkit-scrollbar{display:none;}
you can add code after class selector this:
body::-webkit-scrollbar{display:none;} .selectbox::-webkit-scrollbar{width:12px;}
keep in mind work in browsers support webkit.
Comments
Post a Comment