按照所有提示here禁用滚动后无效。
为什么我的webview会在没有任何水平滚动的情况下恰好适合页面时向左或向右移动?
左图:初始加载
右图:向左滑动后。
...
HTML:
<html>
...
<body id="visitorinfo">
<div class="visitor">
<div class='titlebox'><img src="../images/helloworld.png"/></div>
</div>
</body>
</html>
CSS:
#visitorinfo{
max-width:500px;
text-align:left;
font-size:16px;
display:block;
overflow:hidden;
margin:5px;
}
.titlebox{
float:center;
max-width:100%;
padding:5px;
text-align:center;
}
.titlebox img{
width:100%;
}
.visitor{
margin-bottom:35px;
display:block;
overflow:hidden;
margin:5px 10px;
word-wrap:break-word;
}
注意:这将出现在图像和文本中。此外,我遗漏了多余的“正确刷卡”。