Skip to content

Instantly share code, notes, and snippets.

@marekrozmus
Last active February 18, 2024 00:45
Show Gist options
  • Save marekrozmus/925658f824acca11744f62a786447ba9 to your computer and use it in GitHub Desktop.
Save marekrozmus/925658f824acca11744f62a786447ba9 to your computer and use it in GitHub Desktop.
Background images in CSS
.bg-simple-set {
background-image: url('../assets/mobile.jpg');
}
@media screen and (min-width: 640px) {
.bg-simple-set {
background-image: url('../assets/tablet.jpg');
}
}
@media screen and (min-width: 1024px) {
.bg-simple-set {
background-image: url('../assets/desktop.jpg');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment