Skip to content

Instantly share code, notes, and snippets.

@danfoust
Created December 18, 2018 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danfoust/1050ff142ff73bbf7eee91c5bbebfd6d to your computer and use it in GitHub Desktop.
Save danfoust/1050ff142ff73bbf7eee91c5bbebfd6d to your computer and use it in GitHub Desktop.
If you're lazy loading images, this will prevent the flash of alt text that appears before the images are loaded.
img:not([src]) {
visibility: hidden;
}
/* IE/Edge */
img[data-src]:not([src]),
img[data-srcset]:not([src]) {
display: block;
min-height: 1px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment