I have found a good example of a fullscreen video on CodePen: https://codepen.io/dudleystorey/pen/knqyK
I have difficulties with understanding the following styles:
video {
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
}
Why we can't just specify min-width and min-height? Why do we need to set width and height to auto?