Last active
February 1, 2020 04:01
-
-
Save btorresgil/608204baacd24fe29419c43c69629ff6 to your computer and use it in GitHub Desktop.
Responsive images - https://www.freecodecamp.org/news/time-saving-css-techniques-to-create-responsive-images-ebb1e84f90d5/
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 { | |
height: auto; | |
width: 100%; | |
/* even more control with max-width */ | |
max-width: 720px; | |
/* max-height fixes stretching issues in safari/ios */ | |
max-height: 200px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment