I am having a long drop down menu .I have used the overflow property by which it is getting scrolled....But it does not look nice...Please suggest me how to give good CSS to scrollbars
            Asked
            
        
        
            Active
            
        
            Viewed 1,204 times
        
    0
            
            
        - 
                    Try: http://stackoverflow.com/questions/7725652/css-scrollbar-style-cross-browser – Jeroenhoman Jan 06 '13 at 13:57
- 
                    Wrote a detail answer about scroll bar styling options here: http://stackoverflow.com/a/14150577/1085891 – JSuar Jan 06 '13 at 23:10
2 Answers
0
            
            
        Try to use jScrollPane (jquery plugin) instead a default browser scrollbar.
Example: http://www.kelvinluck.com/assets/jquery/jScrollPane/examples.html
 
    
    
        karacas
        
- 2,054
- 1
- 19
- 29
0
            In modern browsers you can only use proprietary css properties to style the scroll bar. Here is a link to the -webkit properties available: http://css-tricks.com/custom-scrollbars-in-webkit/
If you want a more cross-browser solution, you're going to have to use some JS. Here's a plugin that I've used before that works fairly well and is easily customizable: http://www.dynamicdrive.com/dynamicindex11/facescroll/index.htm It works like the scroll bars on Facebook and works extremely well for dropdown menu scenarios.
 
    
    
        DMTintner
        
- 14,405
- 5
- 35
- 32
