LoginSignup
1
2

More than 5 years have passed since last update.

[html] [css] [ios] ページ全体のスクロールを無効にする

Last updated at Posted at 2018-11-27

画面ぴったりのアプリケーションを作ってると、スクロールが邪魔になる。
そこでページ全体のスクロールを無効にする方法を調べてみた。
真っ先に出てきたのがこれ。

body, html {
  overflow: hidden;
}

しかし iphone で確認すると、ページが動いてしまう。
https://qiita.com/mimoe/items/f5f668cebb697d073553
すると大丈夫らしいが、 css だけで出来た。

body {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

これでおk。

1
2
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
1
2