Skip to content

Instantly share code, notes, and snippets.

@soerson
Created September 5, 2016 08:20
Show Gist options
  • Save soerson/8afa24db9688bde11d237590aadb805a to your computer and use it in GitHub Desktop.
Save soerson/8afa24db9688bde11d237590aadb805a to your computer and use it in GitHub Desktop.
aspect ratio hack
@mixin aspect-ratio($width, $height) {
position: relative;
padding-bottom: ($height / $width) * 100%;
img,
video,
iframe,
object,
embed {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment