Chrome (on Mac) breaks 2017 parallax scrolling
-
The current version of the Chrome browser on the Mac
Version 67.0.3396.87 (Official Build) (64-bit)
breaks the scrolling on 2017 Theme for multiple sections.
Here is an example without the fix:
https://angelpup.com/
(scroll all the way and you will see lots of gray areas.)Here is an example with the fix:
https://adamsblakebookservices.com/
See https://stackoverflow.com/questions/50804554/css-background-attachment-fixed-fix-for-chrome-67
You can fix it by adding this to the current media query
@media screen and (min-width: 48em){
.panel-image {
transform: translate3d(0,0,0);
-webkit-transform: translate3d(0,0,0);
}
}I thought that by now there would be a new version of Chrome that would fix this, but so far not.
- The topic ‘Chrome (on Mac) breaks 2017 parallax scrolling’ is closed to new replies.