Created
March 22, 2017 13:01
-
-
Save vanessasoutoc/9bbf2e901315f39e105baf454e2df714 to your computer and use it in GitHub Desktop.
Resposive image with css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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