hola kiero poner una imagen de fondo a una web (tarea facil verdad)
pero lo ke kiero es ke la imagen aparezca pegada hacia arriba y no se repita, osea ke se vea el color de fondo ke le ponga a la web.
| ||||
Re: poner imagen de fondo, pegada hacia arriba Hola siciliano_06. Bienvenido al foro. Pon esto entre <head> y </head>
Código:
Imagen de fondo<style type="text/css"> body {background: url(imagen.jpg) #FFFF00 no-repeat top} </style> Color de fondo Saludos, |
| ||||
Re: poner imagen de fondo, pegada hacia arriba no, eso no funciona. se desaparece totalmente la imagen el codigo ke tengo esta asi: <style type="text/css"> <!-- body { margin-top: 0px; background-color: #003366; background-image: url(linea.jpg); } --> </style> |
| ||||
Re: poner imagen de fondo, pegada hacia arriba Hola de nuevo. Ponlo así, debería funcionarte:
Código:
Saludos, <style type="text/css"> <!-- body { margin-top: 0px; background: url(linea.jpg) #003366 no-repeat top; } --> </style> |
| ||||
Re: poner imagen de fondo, pegada hacia arriba asi funciono <style type="text/css"> <!-- body { margin-top: 0px; background-color: #ffffff; background-image: url(linea.jpg); background-repeat: repeat-x; } --> </style> gracias de todos modos |
| ||||
Re: poner imagen de fondo, pegada hacia arriba <head> <style type="text/css"> <!-- body { background-image: url(archivo.gif); background-repeat: no-repeat; } --> </style></head>
__________________ NO PUEDE LLOVER TODO EL TIEMPO |