CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
CSS Combat
removing vertical scrollbar
mshort
Permalink to comment
#
August 2008
is there a way to remove the vertical scroll bar from a div with overflow:scroll set
I have a div which I only want to scroll horizontally, I am not sure why the vertical scroll bar is even there since the content doesn't go down that far
.V1
Permalink to comment
#
August 2008
u can also do overflow-x: and overflow-y:
instead of doing overflow:scroll.
cybershot
Permalink to comment
#
August 2008
you can also try overflow:auto; that will sometimes clear it up if it's not high enough to need the scrollbars
Add a Comment
I have a div which I only want to scroll horizontally, I am not sure why the vertical scroll bar is even there since the content doesn't go down that far
instead of doing overflow:scroll.