How do I remove the horizontal scrollbar in a div?
When I set overflow:scroll , I get horizontal and vertical scrollbars. Is there a way to remove the horizontal scrollbar in a div? basarat overflow-x: hidden; Don't forget to write overflow-x:hidden; code should be overflow-y: scroll; overflow-x:hidden; Pasha With overflow-y:scroll , the vertical scrollbar will always be there even if it is not needed. If you want y-scrollbar to be visible only when it is needed, I found this works: .mydivclass {overflow-x: hidden; overflow-y: auto;} CSS overflow-y: scroll; See it on jsFiddle . Notice if you remove the -y from the overflow-y property, the