Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save evaldosantos/b9e42fad13b8166d28475dc13ef83c23 to your computer and use it in GitHub Desktop.
Save evaldosantos/b9e42fad13b8166d28475dc13ef83c23 to your computer and use it in GitHub Desktop.
responsive images
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