Skip to content

Instantly share code, notes, and snippets.

@wutupake
Created October 26, 2012 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save wutupake/3959640 to your computer and use it in GitHub Desktop.
Save wutupake/3959640 to your computer and use it in GitHub Desktop.
SCSS: iframe responsive video embedding ( http://webdesignerwall.com/tutorials/css-elastic-videos )
<div class="myvideo">
<iframe src="http://www.youtube.com/embed/MY-VIDEO" frameborder="0" allowfullscreen></iframe>
</div>
.myvideo{
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
iframe,
object,
embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
@ian-patel
Copy link

+1

@miiiguel
Copy link

Awesome! Thanks , man!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment