Buon pomeriggio, ho questo problema, inserisco con il background-image un'immagine di sfondo nel body.
Soltanto che con IE rispetta le reali dimensioni 1024x768, invece FF, aumenta le dimensioni in altezza.
Come posso mantenere le stesse dimensioni anche per FF?
Questo è il css:
codice:
//FF
html, body {
margin : 0;
padding : 0;
}
body{
background : url(../AppoHtml/Sfondo.png) top left no-repeat;
width:900px;
height:640px;
}
//IE
html, body {
margin : 0;
padding : 0;
}
body{
background : url(../AppoHtml/Sfondo.png) top left no-repeat;
background-image:url(../AppoHtml/bg100.gif);
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../AppoHtml/Sfondo.png", sizingMethod="scale");
}
grazie mille...