Retroceder   Foros del Web > Diseño de Sitios web > CSS

Respuesta
 
Herramientas Desplegado
Antiguo 24-abr-2008, 16:12   #1 (permalink)
carlos_compu7 no se puede cailificar en este momento
 
Fecha de Ingreso: febrero-2007
Mensajes: 8
Sonrisa Problema al Visualizar Css En FireFox

Saludos; estoy haciendo una pagina web en el q le estoy dando el efecto de un cuadro con bordes redondeados y tengo un problema con css Style,al ver el la previsualisacion, no se ve bien en Firefox en IE Funciona correctamente no se si ustedes me puedan ayudar a buscar cual es error este es el codigo q tengo en mi cstyle

.borde_arriba_izquier {
background-attachment: fixed;
background-image: url(../images/borde_arriba_izqui.jpg);
background-repeat: no-repeat;
background-position: right bottom;
}
.borde_arriba_derech {
background-attachment: fixed;
background-image: url(../images/borde_arriba_derec.jpg);
background-repeat: no-repeat;
background-position: left bottom;
}
.borde_abajo_izqui {
background-attachment: fixed;
background-image: url(../images/borde_abajo_izqui.jpg);
background-repeat: no-repeat;
background-position: right top;
}
.borde_abajo_derecha {
background-attachment: fixed;
background-image: url(../images/borde_abajo_derecho.jpg);
background-repeat: no-repeat;
background-position: left top;
}
.Linea_arriba {
background-attachment: fixed;
background-image: url(../images/linea_arriba.jpg);
background-repeat: repeat-x;
background-position: left bottom;
}
.linea_abajo {
background-attachment: fixed;
background-image: url(../images/linea_abajo.jpg);
background-repeat: repeat-x;
background-position: left top;
}
.linea_izquier {
background-attachment: fixed;
background-image: url(../images/linea_izquier.jpg);
background-repeat: repeat-y;
background-position: right top;
}
.Linea_derech {
background-attachment: fixed;
background-image: url(../images/linea_derech.jpg);
background-repeat: repeat-y;
background-position: left top;
}


Espero haberme explicado correctamente de antemano gracias por cualquier respuesta
carlos_compu7 está desconectado   Responder Citando
Antiguo 24-abr-2008, 16:50   #2 (permalink)
nedrek está en el buen camino
 
Avatar de nedrek
 
Fecha de Ingreso: abril-2008
Ubicación: Valencia, España
Mensajes: 151
Re: Problema al Visualizar Css En FireFox

Ponles a todos los elementos width y height, y posiciona todas las imagenes en el top left, y de paso hazlo de la siguiente manera:

Código:
.borde_arriba_izquier {
width: 100px;
height: 100px;
background: url(../images/borde_arriba_izqui.jpg) no-repeat fixed left top;
}
Mejor, verdad?


Un saludo
nedrek está desconectado   Responder Citando
Respuesta

No hay votos aún.


Herramientas
Desplegado

Normas de Publicación
No puedes crear nuevos temas
No puedes responder temas
No puedes subir archivos adjuntos
No puedes editar tus mensajes

BB code is Activado
Caritas están Activado
[IMG] está Activado
Código HTML está Desactivado


La Zona horaria es GMT -6. Ahora son las 17:40.


Message Board Statistics

LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93