Skip to content

Instantly share code, notes, and snippets.

@ladislavsulc
Last active February 18, 2021 17:28
Show Gist options
  • Save ladislavsulc/f7aaec195ade0365cf3f2255a83a6dfb to your computer and use it in GitHub Desktop.
Save ladislavsulc/f7aaec195ade0365cf3f2255a83a6dfb to your computer and use it in GitHub Desktop.
Fluid Images
// https://www.zachleat.com/web/fluid-images/
img {
max-width: 100%;
}
img[width] {
width: auto; /* Defer to max-width */
}
img[width][height] {
height: auto; /* Preserve aspect ratio */
}
/* Let SVG scale without boundaries */
img[src$=".svg"] {
width: 100%;
height: auto;
max-width: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment