- Desde
- 11 Oct 2005
- Mensajes
- 3.829
A ver si alguien puede ayudarme a entender porqué no se vé igual un estilo en IE y en Firefox.
Intentaré explicar el problema que tengo. Estoy haciendo un estilo, el cual tiene en el header varias celdas, el problema es que con IE se visualiza como si fuera fluid y en Firefox como si fuera fixed.
Creo que el problema está en la primera de las celdas que podeis ver en las imágenes que adjunto. En IE se repite hasta llenar todo el ancho de la pantalla, pero en Firefox no ocurre eso. Son las celdas <td class=head_05> y <td class=head_18>. ¿Será que no funciona background-repeat con Firefox?
La imagen bnr_04_tile.gif tiene 2px de ancho y la bnr_12_tile.gif 8 px de ancho
El código es el siguiente:
CSS:
TABLA:
IMAGENES:
Internet Explorer
Firefox
Intentaré explicar el problema que tengo. Estoy haciendo un estilo, el cual tiene en el header varias celdas, el problema es que con IE se visualiza como si fuera fluid y en Firefox como si fuera fixed.
Creo que el problema está en la primera de las celdas que podeis ver en las imágenes que adjunto. En IE se repite hasta llenar todo el ancho de la pantalla, pero en Firefox no ocurre eso. Son las celdas <td class=head_05> y <td class=head_18>. ¿Será que no funciona background-repeat con Firefox?
La imagen bnr_04_tile.gif tiene 2px de ancho y la bnr_12_tile.gif 8 px de ancho
El código es el siguiente:
CSS:
HTML:
td.head_01{width:51px;height:187px;}
td.head_02{width:50px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_02.gif");background-repeat:no-repeat;}
td.head_03{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_03.gif");background-repeat:no-repeat;}
td.head_04{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_04.gif");background-repeat:no-repeat;}
td.head_05{background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_04_tile.gif");background-repeat:repeat-x;}
td.head_06{width:51px;height:75px;}
td.head_07{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_u_01_02.gif");background-repeat:no-repeat;}
td.head_08{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_u_02.gif");background-repeat:no-repeat;}
td.head_09{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_u_03.gif");background-repeat:no-repeat;}
td.head_10{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_u_04_01.gif");background-repeat:no-repeat;}
td.head_11{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_05.gif");background-repeat:no-repeat;}
td.head_12{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_06.gif");background-repeat:no-repeat;}
td.head_13{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_07.gif");background-repeat:no-repeat;}
td.head_14{width:51px;height:83px;}
td.head_15{width:50px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_10.jpg");background-repeat:no-repeat;}
td.head_16{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_11.jpg");background-repeat:no-repeat;}
td.head_17{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_12.gif");background-repeat:no-repeat;}
td.head_18{background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_12_tile.gif");background-repeat:repeat-x;}
td.head_19{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_13.gif");background-repeat:no-repeat;}
td.head_20{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_14.jpg");background-repeat:no-repeat;}
td.head_21{width:51px;background-image:url("http://www.vbhispano.com/foros/images/misc/bnr_15.jpg");background-repeat:no-repeat;}
HTML:
<td><table width=100%" border="2" cellspacing="0" cellpadding="0">
<tr>
<td class=head_05> </td>
<td class=head_11><img src=images/misc/spacer.gif alt="" width="51" height="1"></td>
<td class=head_12><img src=images/misc/spacer.gif alt="" width="51" height="1"></td>
<td class=head_13><img src=images/misc/spacer.gif alt="" width="51" height="1"></td>
<td class=head_01><img src=images/misc/bnr_08.gif alt="" width="51" height="187"></td>
</tr>
<tr>
<td class=head_18> </td>
<td class=head_19><img src=images/misc/spacer.gif alt="" width="51" height="1"></td>
<td class=head_20><img src=images/misc/spacer.gif alt="" width="51" height="1"></td>
<td class=head_21><img src=images/misc/spacer.gif alt="" width="50" height="1"></td>
<td class=head_14><img src=images/misc/bnr_16.gif alt="" width="51" height="83"></td>
</tr>
</table></td>
Internet Explorer
Firefox
Para cualquier aclaración, no dudeis en preguntar.
Ah!, ya sé que podría hacerlo con tablas, sin utilizar clases CSS, pero esto me tiene un poco confundido y quisiera aclararlo.
Un saludo