Tldr

  • When attempting to remove scrollbars from overflowing content, one might want to use overflow-x: hidden
  • This unfortunately enables overflow auto on the other axis, resulting in sometimes more scrollbars
  • What one should use is overflow-x: clip (caniuse)
  • This also enables the overflow-clip-margin