i need make video full height. although, div size around 50% , when make video fixed position, works full background video want make fit div full height.
have want here
you can check video html code
<div class="video"> <div id="video-holder" style="width:100%; position: absolute; height: auto !important; max-height:100%;"> <video id="video" style="width:100%; height:100%;"> <source src="http://www.w3schools.com/html/movie.ogg" type="video/ogg"> </video> </div> </div>
have tried following css video tag?:
{ width: auto; height: 100%; position: fixed; }
given example mention seems put video 100% of height. if not need give more detailed explanation.
Comments
Post a Comment