Lazy Loading Image Styles

PHOTO EMBED

Fri Mar 12 2021 09:33:33 GMT+0000 (Coordinated Universal Time)

Saved by @klick #css

/* Hide lazyload images when JS fails (noscript will kick in then)  */
.no-js img.lazyload {
    display: none;
}

/* Prevent flash of broken image when src is not yet swapped by lazysizes */
img[src=""],
img:not([src]) {
  visibility: hidden;
}
content_copyCOPY