Questions tagged [webkit-overflow-scrolling]
9 questions
5
votes
0 answers
Position fixed and -webkit-overflow-scrolling: touch;
I am using the css trick to make a site feel like an app in Cordova.
-webkit-overflow-scrolling: touch;
However, that breaks (disappear, bounce) my position:fixed elements. Any ideas on why?
FYI Safari on ios8 works great, the problem it's only…

ozke
- 1,622
- 4
- 25
- 44
3
votes
1 answer
Hide an element once it has scrolled to the top of its container
I have an element inside a container with overflow: scroll. So that is great however, what I am wanting is for the element to scroll as it's doing, but once the element overflows the top of its -grandparents- container, I am wanting the whole…

kahlo
- 33
- 5
2
votes
3 answers
Flex grow till overflow scroll with footer component in sidebar with parent height 100%
I am trying to create a sidebar for my webapp which has a scrollable list in its sidebar. On the bottom of the sidebar there is a small footer. My problem stems from the fact that if I set the max size to 100% it pushes away the footer at the…

Lightningstorms
- 147
- 1
- 8
2
votes
0 answers
Safari iOS13 - webkit-overflow-scrolling no longer works to disable momentum scrolling
Prior to ios 13, I was disabling momentum scrolling by setting webkit-overflow-scrolling to auto. But this property no longer works in ios 13 which has caused regression in my webapp and I am experiencing flickering during scrolling(especially…

Chris
- 21
- 3
2
votes
1 answer
Momentum scroll bug iOS
I am trying to have momentum scrolling in my app on an element generated with vue's v-for. It works most of the time, but sometimes when I click somewhere else on the screen, or press a button the scroll becomes disabled.
This bug only happens when…

Clement Da
- 51
- 1
- 4
1
vote
0 answers
-webkit-overflow-scrolling: touch; not working on iOS cordova iPad app
I'm using cordova@9.0.0 with iOS@5.1.1 with cordova-plugin-wkwebview-engine 1.2.1 plugin.
Scrolling is working fine on all devices except iPad. I installed my app on iPhone 8 (iOS 13.3), no problems. On iPad 7th gen. (iOS 13.3) it doesn't scroll and…

Andre Germund
- 11
- 2
1
vote
2 answers
ios 13 CSS set -webkit-overflow-scrolling: auto cannot work
I set -webkit-overflow-scrolling: touch in CSS,Then When I scroll the elements, it will randomly jam,I've tried everything I can find,But it didn't work.
I found that ios13 discarded the CSS -webkit-overflow-scrolling: auto
This happens when I use…

Kunlp
- 13
- 1
- 3
1
vote
1 answer
-webkit-overflow-scrolling: touch; border-radius will be ignored when set background in child element
There is a strange phenomenon on safari: border-radius of parent element doesn't work when child element has a background.
Everything is OK when remove -webkit-overflow-scrolling: touch;.
What happen when set -webkit-overflow-scrolling: touch; in…

chenluyan
- 221
- 1
- 2
- 6
0
votes
0 answers
webkit overflow scrolling freeze scrolling after closing a modal
I am working on an ionic project. I have a page with css looks like the code bellow.
my page contain a button that opens a modal popup, when I close that model the page freezes and stops scrolling.
When I change -webkit-overflow-scrolling to "auto"…
user12175914