0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

スクロールバーを非表示にするCSS

Last updated at Posted at 2022-07-18

実現したいこと

overflow-y: scroll;を設定した場合に表示されるスクロールバーを非表示にした上でスクロール可能な状態にする。

実装

クラス名はoverflow-y: scroll;を付与したクラスを指定する。

.[クラス名]::-webkit-scrollbar {
    display: none;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?