I'm attempting to achieve this: IMG
Below is the code snippet I've been using:
<div class="container" id="containervideo">
<div id="video">
<div class="box iframe-box">
<div class="container">
<iframe src="http://player.vimeo.com/video/67794477?title=0&byline=0&portrait=0&color=0fb0d4" width="1280" height="720" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div>
</div>
CSS:
#containervideo {
width: 100%;
height: 100%;
position: absolute;
padding: 0;
margin: 0;
left: 2px;
top: 936px;
z-index: -1000;
overflow: hidden;
}
#video {
min-height: 100%;
//min-width:100%; - if fit to width
position:absolute;
bottom:0px;
left:0;
}
The issue I am facing is that the video always ends up centered on the screen rather than filling both sides. Any assistance would be greatly appreciated! :(