Skip to content

Instantly share code, notes, and snippets.

@vedranjaic
Created May 26, 2013 17:46
Show Gist options
  • Save vedranjaic/5653489 to your computer and use it in GitHub Desktop.
Save vedranjaic/5653489 to your computer and use it in GitHub Desktop.
css: Responsive embeded videos
/* wrap <iframe> in a div */
.responsive-video {
position: relative;
padding-bottom: 56.25%; /* 16/9 ratio */
padding-top: 30px; /* IE6 workaround*/
height: 0;
overflow: hidden;
}
.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
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