Skip to content

Instantly share code, notes, and snippets.

@hidex7777
Last active February 3, 2017 14:37
Show Gist options
  • Save hidex7777/9733272 to your computer and use it in GitHub Desktop.
Save hidex7777/9733272 to your computer and use it in GitHub Desktop.
hack for YouTube movie in iframe

HTML:

<div class="movieWrapper">
  <div class="movie">
    <iframe src="http://www.youtube.com/embed/05DL3dyudXI" frameborder="0"></iframe>
  </div>
</div>

CSS:

.movieWapper {
  width: 75%;
  margin: 0 auto;
}
.movie {
  position: relative;
  height: 0;
  padding-top: 56.25% ;/* 16:9*/
}
iframe {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment