Created
October 13, 2013 14:55
-
-
Save ZellSnippets/6963219 to your computer and use it in GitHub Desktop.
SCSS: Responsive image solutions
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
// 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