Fixing Lazy Loading Image Issues on Older iOS (iOS 15)
On older iOS versions (e.g., iOS 15), lazy loading images can trigger an overflow bug, causing images to infinitely enlarge during page scrolling.
Below is the CSS workaround to fix this bug:
.fcom_image_carousel .el-image,
.fcom_media_provider_uploader .el-image,
.feed_body .el-image,
.feed_body p:has(img) {
overflow: hidden !important;
max-width: 100% !important;
display: block !important;
}
html, body {
overflow-x: hidden !important;
position: relative !important;
}
I've passed this onto the devs