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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -