Advertisement
Guest User

SCSS für Bilder und Videos in RWD

a guest
Nov 8th, 2012
621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.52 KB | None | 0 0
  1. // set some elements responsive
  2. img, object, embed, video {
  3.   height: auto;
  4.   max-width: 100%;
  5. }
  6.  
  7. // and the hack for IE8
  8. @media \0screen {
  9.   img, object, embed, video {
  10.     width: auto; /* for ie 8 */
  11.   }
  12. }
  13.  
  14. // and for video
  15. .video {
  16.   position: relative;
  17.   padding-bottom: 56.25%;
  18.   height: 0;
  19.   overflow: hidden;
  20.   @media (max-width: 979px) {
  21.     margin-bottom: 20px;
  22.   }
  23. }
  24.  
  25. .video iframe,
  26. .video object,
  27. .video embed {
  28.   position: absolute;
  29.   top: 0;
  30.   left: 0;
  31.   width: 100%;
  32.   height: 100%;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement