Tag Archives: remove

CSS Tricks: Removing the horizontal scrollbar from your divs

Here is the simple CSS code I use to hide horizontal scrollbars from my divs:

overflow-x: hidden;

You can, of course, also use this to hide vertical scrollbars, should you need or want to:

overflow-y: hidden;