Failed to scroll container div element on chrome (Mobile version)

I have a popup like div (say parentDiv) that has a child div (say containerDiv) that contains a set of div elements and scrolls to the chrome desktop.

 <div id="parentDiv" style="position: absolute; top: 100px;"> <div id="containerDiv" style="overflow: auto; position: relative; height: 150px;"> <div>List 1</div> <!--Child div elements--> <div>List 2</div> <div>List 3</div> <div>List 4</div> </div> </div 

Surprisingly, I can scroll it on chrome on the desktop, but I can not scroll chrome on my tablet device.

Please indicate what is wrong here.

+5
source share
1 answer

You tried to use:

 overflow-y:scroll 

instead

+1
source