Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. @mixin aspect-ratio($width, $height) {
  2. position: relative;
  3. &:before {
  4. display: block;
  5. content: "";
  6. width: 100%;
  7. padding-top: ($height / $width) * 100%;
  8. }
  9. & > .aspect-content {
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. bottom: 0;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement