Last active
August 9, 2016 20:28
-
-
Save waynebcox/868c31f148b96c986d69720bdd3f9baa to your computer and use it in GitHub Desktop.
Responsive iframe container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="responsive-container"> | |
<iframe src="https://www.youtube.com/embed/IHvqjtpM-Vk?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 16x9 Aspect Ratio */ | |
.responsive-container { | |
position: relative; | |
height: 0; | |
overflow: hidden; | |
padding-bottom: 56.25%; | |
} | |
.responsive-container iframe { | |
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