Disable vertical scroll bar on div overflow: auto Ask Question

Disable vertical scroll bar on div overflow: auto Ask Question

Is it possible to allow only a horizontal scroll bar when using overflow:auto (or scroll)?

ベストアンサー1

These two CSS properties can be used to hide the scrollbars:

overflow-y: hidden; // hide vertical
overflow-x: hidden; // hide horizontal

おすすめ記事