Skip to content

Instantly share code, notes, and snippets.

@patricoferris
Created July 21, 2018 09:30
Show Gist options
  • Save patricoferris/7adc32992480802e389379b64ce32d14 to your computer and use it in GitHub Desktop.
Save patricoferris/7adc32992480802e389379b64ce32d14 to your computer and use it in GitHub Desktop.
Media Queries for Image Optimisation
@media only screen and (min-width: 600px) {
background-image: url('supercoolimages/dog-small.png');
}
@media only screen and (min-width: 992px) {
background-image: url('supercoolimages/dog-big.png');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment