我有一个基于 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>