Skip to content

Instantly share code, notes, and snippets.

@vanessasoutoc
Created March 22, 2017 13:01
Show Gist options
  • Save vanessasoutoc/9bbf2e901315f39e105baf454e2df714 to your computer and use it in GitHub Desktop.
Save vanessasoutoc/9bbf2e901315f39e105baf454e2df714 to your computer and use it in GitHub Desktop.
Resposive image with css
@media (min-width: 1000px) and (max-width:1380px){
.politician-profile .bg-img{
background-image: url(../img/fundo_app_dog_media.png);
height: 90%;
}
}
@media (min-width:720px) and (max-width:1000px){
.politician-profile .bg-img{
background-image: url(../img/fundo_app_dog_peq.png);
height: 90%;
}
}
@media (min-width:480px) and (max-width:720px){
.politician-profile .bg-img{
background-image: url(../img/fundo_app_dog_xpeq.png);
height: 90%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment