Skip to content

Instantly share code, notes, and snippets.

@dnieh
Last active March 29, 2016 07:25
Show Gist options
  • Save dnieh/88f3b9bbfe692be3eb2e to your computer and use it in GitHub Desktop.
Save dnieh/88f3b9bbfe692be3eb2e to your computer and use it in GitHub Desktop.
responsive full screen video on desktop and mobile (styles.sass)
section {
height: 100vh;
}
.video-container {
position: relative;
// padding-bottom: 56.25%; <-- Important. Remove this.
height: 0;
overflow: hidden;
.video {
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