Skip to content

Instantly share code, notes, and snippets.

@ZellSnippets
Created October 13, 2013 14:55
Show Gist options
  • Save ZellSnippets/6963219 to your computer and use it in GitHub Desktop.
Save ZellSnippets/6963219 to your computer and use it in GitHub Desktop.
SCSS: Responsive image solutions
// Responsive image with padding bottom hack
.parent {
position: relative;
padding-bottom: 75%; /* 3:4 aspect ratio */
}
.child {
position: absolute;
top: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment