Skip to content

Instantly share code, notes, and snippets.

@chrisfromredfin
Created March 29, 2018 17:18
Show Gist options
  • Select an option

  • Save chrisfromredfin/416e0b818ee363cbd01b5581f8c418a3 to your computer and use it in GitHub Desktop.

Select an option

Save chrisfromredfin/416e0b818ee363cbd01b5581f8c418a3 to your computer and use it in GitHub Desktop.
@mixin embed-container($width, $height) {
$ratio: ($height / $width) * 100%;
position: relative;
padding-bottom: $ratio;
height: 0;
overflow: hidden;
max-width: 100%;
iframe, object, embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment