Content disappears on scrolling when ion-content + ion-card (SOLVED)

I had a issue when scrolling a list. It happened to disappear the content for some time (seconds) while scrolling.
I added the following line to the element CSS to get it solved:

-webkit-transform: translateZ(0) translate3d(0px, 0px, 0px);

Hope it helps someone!

3 Likes

What does the markup look like? While that may “work”, it’s probably not the correct solution to your problem.

where did you add that? <ion-content> ?

1 Like

you are my hero, thank you very much

@ozexpert great call on the ion-content I created a component for the same page, so essentially, I had two Ion-contents causing the scrolling issue. Thanks!