Created
August 8, 2016 08:13
-
-
Save kvalexandr/bf0b2d728275b61c007da55e9baf360d to your computer and use it in GitHub Desktop.
This file contains 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
$('.content iframe').wrap('<div class="video-wrap"></div>'); | |
.video-wrap { | |
height: 0; | |
overflow: hidden; | |
padding-bottom: 56.25%; | |
position: relative; | |
} | |
.video-wrap iframe, .video-wrap object, .video-wrap embed { | |
height: 100%; | |
left: 0; | |
position: absolute; | |
top: 0; | |
width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment