treehouse : what would you like to learn today?
Web Design Web Development iOS Development

removing vertical scrollbar

  • 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
  • u can also do overflow-x: and overflow-y:
    instead of doing overflow:scroll.
  • you can also try overflow:auto; that will sometimes clear it up if it's not high enough to need the scrollbars