垂直滚动条在Android中不起作用

时间:2012-12-17 07:11:01

标签: javascript html css html5

垂直滚动条在Android中无效:

这是我的CSS代码:

.innerItem {
  height:450px;
  overflow: auto;
  overflow-x:hidden;
} 

这是我的HTML:

<div class="innerItem">
  my data:- its paragraph  
</div>

1 个答案:

答案 0 :(得分:0)

我对android并不是特别熟悉,但尝试改为

.innerItem {
height:450px;
overflow-y: scroll;
overflow-x:hidden;
}