ho sempre saputo che i browser non interpretano ugualmente i css ma, che la classe menu venga rappresentata da due colori diversi è quantomeno strano
in ie 6 sp2(bla bla bla) è azzurra mentre in firefox è bianca perchè?
ah nella pagina la classe menu è contenuta in contenitore
codice:
/* CSS Document */
body{background-image:url(../img/comune/sfondo.png)}
/* CONTENITORE DEL SITO */
.CONTENITORE {
position:absolute;
left:50%;
margin-left:-380px;
width:760PX;
height:400px;
top:50%;
margin-top:-200px;
border-color: #000000;
border-width:2px;
border-style:solid;
}
/* contenitore del menu */
.menu{
position:absolute;
background-color:#0099CC;
left:50%;
margin-left:-380px;
width:760px;
height:15px;
top:100%;
margin-top:-30px;
border-top-color:#000000;
border-top-width:1px;
border-top-style:solid;
border-bottom-width:1px;
border-bottom-style:solid;
border-bottom-color:#000000;
}
/* contenitore del logo*/
.logo{
position:relative;
left:50%;
margin-left:-380px;
width:760px;
height:15px;
top:0%;
margin-top:0px;
border-top-color:#000000;
border-top-width:1px;
border-top-style:solid;
border-bottom-color:#000000;
border-bottom-width:1px;
border-bottom-style:solid;
}