I made the video full screen on home only now that I need to use the video with the same width of 100% only with the minimum height of 400px, but the video only gets 400px in height when I take the 100% wide:
<!doctype html>
<html lang="pt-br">
<meta http-equiv="refresh" />
<head>
<style>
*{ margin:0; padding:0; border:0; }
HTML ,BODY{ height:100%; margin:0; padding:0; border:0; -webkit-font-smoothing: antialiased; -moz-font-smoothing: antialiased; -o-font-smoothing: antialiased; -ms-webkit-font-smoothing: antialiased;}
BODY{ text-align:left; }
#site{ width:100%; min-height:100%; position:relative; }
#site #videhome{ position:fixed; right:0; bottom:0; min-width:100%; min-height:100%; width:auto; height:auto; z-index:-100; background-size:contain; }
</style>
</head>
<body>
<div id="site">
<video autoplay loop id="videhome">
<source src="video/Falling.Skies.S04E07.HDTV.x264-KILLERS.mp4" type="video/mp4">
</video>
</div>
</body>
</html>
How do I keep the video 100% wide by setting the height I want? And if you have any way to do that, when the person's monitor is smaller, such as 1024x768, will the video keep up or will it adapt?