Skip to content

Instantly share code, notes, and snippets.

@miniMAC
Created July 9, 2020 08:46
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 miniMAC/50d2f987f9a44ae3e9dbe5d10c7ba44f to your computer and use it in GitHub Desktop.
Save miniMAC/50d2f987f9a44ae3e9dbe5d10c7ba44f to your computer and use it in GitHub Desktop.
.target {
background-image: url('url/immagine-desktop.jpg');
}
// Da mobile sostituisci l'immagine desktop con un altra
@media (max-width: 576px) {
.target {
background-image: url('url/immagine-mobile.jpg');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment