HTML: horizontal scrolling without a scollbar

后端 未结 2 907
你的背包
你的背包 2021-01-17 00:10

Is it possible to do horizontal scrolling without a horizontal scrollbar. In Chrome its not very hard, because you can hide the scrollbar using \"overflow-y: hidden\". Check

2条回答
  •  孤街浪徒
    2021-01-17 00:43

    The overflow separations in x and y are only a recent convention, prior to that there was no way to disable the scrollbars individually. You had a few options however:

    1. Hide whichever scrollbar using another layer, you had to guess at dimensions per OS.
    2. Clip the scrollbar out by either using an outer wrapping parent with overflow: hidden or clip:rect(). Again guessing dimensions, not ideal.

    By the looks of things you don't actually require either scrollbar though, so you have a few more options:

    1. Use overflow: hidden.
    2. Use an