Guest User

Untitled

a guest
Jan 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. .aspect-ratio($width, $height) {
  2. position: relative;
  3. &:before {
  4. display: block;
  5. content: '';
  6. width: 100%;
  7. height: 0;
  8. padding-top: ($height / $width) * 100%;
  9. }
  10. }
Add Comment
Please, Sign In to add comment