Skip to content

Instantly share code, notes, and snippets.

@3stacks
Created February 10, 2020 00:20
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 3stacks/c8d709e329b69cd31fa40d9b2fcc82ca to your computer and use it in GitHub Desktop.
Save 3stacks/c8d709e329b69cd31fa40d9b2fcc82ca to your computer and use it in GitHub Desktop.
prefers-reduced-data
.image {
background-image: url('original.webp');
}
@media (prefers-reduced-data: reduce) {
.image {
background-image: url('compressed.webp');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment