Skip to content

Instantly share code, notes, and snippets.

@dandelionadia
Created November 7, 2019 09:44
Show Gist options
  • Save dandelionadia/37899679702374d027681a192ddcae89 to your computer and use it in GitHub Desktop.
Save dandelionadia/37899679702374d027681a192ddcae89 to your computer and use it in GitHub Desktop.
Fluid Width Video
```css
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
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