7
6

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 5 years have passed since last update.

モバイルのスクロールバーの幅を拡大するCSS

Last updated at Posted at 2014-08-16

webkit系のブラウザで、::-webkit-scrollbarのwidthとheightを指定するとスクロールバーの幅を変更することができます。

::-webkit-scrollbar {
  width: 20px;
  height: 20px;
}

iPhoneのSafariなどで確認するとスクロールバーの幅が変更されているのがわかります。

参考:https://www.webkit.org/blog/363/styling-scrollbars/

7
6
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
7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?