Created
April 17, 2020 14:31
-
-
Save evaldosantos/b9e42fad13b8166d28475dc13ef83c23 to your computer and use it in GitHub Desktop.
responsive images
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
img { | |
max-width: 100%; | |
height: auto; | |
} | |
The max-width of 100% will make sure the image is never wider than the container it is in. | |
The height of auto will make the image keep its original aspect ratio. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment