私はCordovaで構築されたアプリを持っており、一部のページでは、コンテンツから空白に水平方向にスクロールできます。
#wrapper
に設定されている私のを超えるものは何もないので、これは奇妙width: 100%
です。
それで、アプリで水平スクロールを完全に無効にする方法があるかどうか疑問に思いましたか?
アップデート:
要求に応じてページのコード:
body {
background-color: #fff;
font-family:Arial, Helvetica, sans-serif;
color: #b7b8b9;
height: 100%;
width: 100%;
}
iframe{
border: none;
width: 100%;
/*margin-top: 50px;*/
}
#header{
height: 50px;
width: 100%;
}
<body>
<div id="wrapper">
<div id="header">
<div class="headerback"><a href="index.html">Home</a></div>
<div class="headerrefresh"><script>var pathname = window.location.pathname;</script><script>document.write('<a href="'+pathname+'">Refresh</a>')</script></div>
<div class="headertitle"><h2>Get the Look</h2></div>
</div><!--HEADER-->
<iframe src="http://www.mbff.com.au/getthelook"></iframe>
</div>
</body>