Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Try adding <code>z-index: 0</code> to the element with <code>overflow: scroll</code> to create a stacking-context that provides a hint to Chrome to use the fast-scrolling code path.</p> <p><strong>Background:</strong></p> <p>I am currently experiencing this issue after updating to the latest version of Chrome for Android. This was also compounded for me by the fact that due to this change the <a href="https://github.com/Modernizr/Modernizr/blob/master/feature-detects/css/overflow-scrolling.js" rel="noreferrer">current Modernizr test</a> for this feature now returns false, so my CSS styles were not being applied.</p> <p>Digging around I found another <a href="http://code.google.com/p/chromium/issues/detail?id=128325#c23" rel="noreferrer">issue</a> that discusses the support for overflow scrolling touch:</p> <blockquote> <p>Tien-Ren observed while debugging 162363 that -webkit-overflow-touch is an inherited property. So the behavior of setting <code>z-index: 0</code> on all non-hidden elements with that property creates a cascade of stacking contexts below it. (This behavior, behind ENABLE_ACCELERATED_OVERFLOW_SCROLLING, is currently enabled only on Android.) <strong>The obvious fix would be to set <code>z-index: 0</code> on only "overflow: scroll" elements.</strong></p> </blockquote> <p>So it would seem that if you are having issues with the scrolling not working as expected then adding <code>z-index: 0</code> to the element with overflow: scroll then this may help. However this did not work for me, although the scrolling sections worked (after I had modified the Modernizr css-overflow-scrolling test to return true for this version of Chrome) the momentum effect of the scrolling was not present.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload