This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |