
27/09/2011, 09:21
|
 | | | Fecha de Ingreso: enero-2010 Ubicación: Santander
Mensajes: 413
Antigüedad: 15 años, 1 mes Puntos: 6 | |
Respuesta: algunas imagenes no aparecen Haber seguramente es un problema de sintaxis entre navegadores.
tu css es:
#botonB {
width:66px;
height:34px;
background-image: url(images/botonbusc_26.png);
background-repeat: no-repeat;
float: right;
margin-top: -38px;
margin-right: -87px;
}
Yo lo pindria de esta forma.
#botonB {
width:66px;
height:34px;
background: url(images/botonbusc_26.png) no-repeat;
float: right;
margin: -38px -87px 0 0;
}
Pruebalo.
Un saludo |