Skip to content

Instantly share code, notes, and snippets.

@nuflowx
nuflowx / Remove black bars from video
Last active July 29, 2016 01:09
Get rid of the black bars of embeded youtube or similar video with CSS media queries
If you don't want the black bars on a video in your site these might do the trick for you:
```
@media all and (min-aspect-ratio: 16/9) {
.video {
width: 100vw;
height: calc(100vw * (9/16));
}
}
@media all and (max-aspect-ratio: 16/9) {