I want to make my ul li list scrollable on device.
So I have this html:
<div class="scrollArea ">
<ul class="selectableListItems" ng-repeat="inspectionReview in inspectionReviews">
<li class="row col-sm-6">
<input type="checkbox" ng-model="inspectionReview.IsNormal" />
{{inspectionReview.InspectionItemName}}
</li>
</ul>
</div>
Here is css classes:
.selectableListItems {
list-style-type: none;
padding: 5px 10px 0px 0px;
}
.scrollArea {
height: 150px;
overflow: auto;
-webkit-overflow-scrolling: auto;
overflow-x: hidden !important;
direction: ltr;
border-radius: 3px;
border-style: solid;
border-color: #dddddd;
}
.scrollArea input[type="text"] {
border: 1px;
direction: rtl;
}
.scrollArea ul {
direction: rtl;
}
That genarete this view:
But the problem that if I open it in android device the scorlling dose not work.
When I open the debugger I on chrome I see error in scc scrollArea :
On -webkit-overflow-scrolling property I get error Unknown property name.
Any idea why I get the error on -webkit-overflow-scrolling property?


