LoginSignup
14
13

More than 5 years have passed since last update.

iOSでiframeのスクロールが効かない問題への対応

Last updated at Posted at 2015-10-12

よくある埋め込みパーツみたいなのを作っていたのだけど、
スマホで横幅100%の指定が効かず、横に伸びちゃって困った。

このあたりを参考に解決。

最終的にこんな感じで無事動作しました。

    <div style="width:100% !important;overflow:auto !important;-webkit-overflow-scrolling:touch !important;">
      <iframe style="width:100%;height:XXXpx;" src="XXXXX"></iframe>
    </div>

-webkit-overflow-scrollingの指定がミソですね。

よかったよかった。

14
13
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
14
13