I basically want to make a full viewport background image.
This is my code:
<html>
<body>
<div class="container">
<img src="loginBg.png" height="100%" width="100%">
</div>
</html>
And stylesheet goes like:
.container{
position:absolute;
top:0px;
bottom:0px;
right:0px;
left:0px;
}
The problem with this approach is, the image is full screen but there is some space below it, because of this space the page is scrollable. I checked it in firefox ubuntu, the white space is not there.
Thanks in advance