I want to set as the home page of my site an image that occupies the entire background, as follows:
<style type=text/css>
body {
background-image: url("imagem.jpg");
background-repeat: no-repeat;
-moz-background-size: 100% 100%;
-webkit-background-size: 100% 100%;
background-size: 100% 100%;}
}
</style>
But I want it fixed in the background (instead of the white background, which appears normally) and above this image I want to put the rest, which will compose the screen. Footer, Top, Login area, Registration ... All positioned on this image, which will be just the background. Can I do this with div? How do I proceed? If anyone can guide me or help by example, thank you.