O background se ajusta a qualquer resolução com CSS, mas´só nesse bendito que não vai.
Segue o codigo abaixo, se alguém puder me ajudar, valeu.
/* CSS Document */
*{
padding:0;
margin:0;}
html, body {
heigth: 100%;
width:100%;
overflow: hidden;
}
#imagem {
width:100%;
height:100%;
position: absolute;
top:0;
left:0;
z-index:0;
}
#total
{ height: 100%;
width: 100%;
position: absolute;
z-index: 1;
top:0;
left:0;
overflow:auto;
}
#master {
height: auto;
width: 960px;
background-color:#C00;
font-size: 18px;
margin-right: auto;
margin-left: auto;
}
</style>
HTML
<body > <img id="imagem" src="imagens/Untitled-1.jpg" width="800" height="600"> <div id="total"> <div id="master"> </div> </div> </body> </html>

Help














