Advertisement
Zeaks

youtube video embed fix for Wordpress

Dec 4th, 2014
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.49 KB | None | 0 0
  1. /*--------------------------------------------------------------
  2. Video embed fix
  3. Use <div class="video-frame"> embed code</div> in a post
  4. --------------------------------------------------------------*/
  5. .video-frame {
  6.     position: relative;
  7.     padding-bottom: 56.25%;
  8.     padding-top: 30px;
  9.     overflow: hidden;
  10.     height: 0;
  11. }
  12. .video-frame iframe,
  13. .video-frame object,
  14. .video-frame embed {
  15.     position: absolute;
  16.     height: 100%;
  17.     width: 100%;
  18.     left: 0;
  19.     top: 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement