salve,
mi sono a puntino a lavorare e fare tutto con i css per ottenere una migliore compatibilità con i browser e solo alla fine del lavoro (lo so, dovevo controllare prima), mi accorgo che in firefox (1.5) non mi si vede niente... solo una classe viene visualizzata...
ho creato delle classi per realizzare la grafica di una tabella di 3 righe per 3 colonne
(3 per le celle in alto e 3 per le celle in basso)
... stranamente nessun problema con IE... ho ricontrollato tutto, file, sorgente pagina... tutto è come in IE.
qualche aiuto ?
grazie
P.S.
posto una parte di codice css
codice:
.l3sxs {
background-attachment: fixed;
background-image: url(/images/layout3/l3sxs.png);
background-repeat: no-repeat;
height: 40px;
width: 30px;
}
.l3cs {
background-attachment: fixed;
background-image: url(/images/layout3/l3cs.png);
background-repeat: repeat-x;
height: 40px;
}
.l3dxs {
background-attachment: fixed;
background-image: url(/images/layout3/l3dxs.png);
background-repeat: no-repeat;
height: 40px;
width: 30px;
}
.l3sxso {
background-attachment: fixed;
background-image: url(/images/layout3/l3sxso.png);
background-repeat: no-repeat;
height: 40px;
width: 30px;
}
.l3cso {
background-attachment: fixed;
background-image: url(/images/layout3/l3cso.png);
background-repeat: repeat-x;
height: 40px;
}
.l3dxso {
background-attachment: fixed;
background-image: url(/images/layout3/l3dxso.png);
background-repeat: no-repeat;
height: 40px;
width: 30px;
}
...e una parte di codice dell'html:
codice:
<table width="740" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="l3sxs"></td>
<td align="center" valign="middle" class="l3cs">TESTO</td>
<td class="l3dxs"></td>
</tr>
</table>