maxudaskin Posted April 18, 2009 Share Posted April 18, 2009 Is it possible to remove the scroll bars in a list box? I have it automatically size it to the amount of dynamic rows (PHP; counting the array rows), but it shows the disabled scroll bar. Your response is appreciated. Thank you. Quote Link to comment https://forums.phpfreaks.com/topic/154661-remove-scroll-bars-in-listbox/ Share on other sites More sharing options...
jackpf Posted April 18, 2009 Share Posted April 18, 2009 overflow: auto; is generally used to hide scroll bars. Quote Link to comment https://forums.phpfreaks.com/topic/154661-remove-scroll-bars-in-listbox/#findComment-813306 Share on other sites More sharing options...
dbrimlow Posted April 19, 2009 Share Posted April 19, 2009 overflow: auto will SHOW scrollbars if the list is longer or wider than the parent box. overflow:hidden hides the scrollbar. BUT, it also hides content that is wider or longer than the box. Quote Link to comment https://forums.phpfreaks.com/topic/154661-remove-scroll-bars-in-listbox/#findComment-814116 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.