Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
モバイル デバイスのウィンドウ内のスクロール可能なコンテンツのセクションのスクロールを無効にせずに、Web ページの本文のスクロールを無効にするにはどうすればよいでしょうか?
単に本文のスクロールを無効にしたい場合は、Css を追加できます。
body { width: 100%; height: 100%; overflow: hidden; }
その場合、本文は何もスクロールされませんが、スクロールするコンテンツを含む本文のセクションは引き続きスクロールできます。