01/01/2010, 11:41
|
| | | Fecha de Ingreso: diciembre-2008 Ubicación: Nicaragua
Mensajes: 160
Antigüedad: 15 años, 11 meses Puntos: 6 | |
Respuesta: Backrground arriba, centro y pie distinto. Hola, pues no te va a salir tan facil, si crees que solo es usando top center o algo asi, estas opciones es para ubicar el fondo si, pero igual solo podes tener un fondo por div, lo que podes hacer es esto:
html,body{height:100%;}
body{width:800px; background: url(body.jpg) center repeat-y; width:100%; height:100%;}
#diva {background: url(top.jpg) top no-repeat; width:100%; height:100%;}
#divb{background: url(pie.jpg) bottom no-repeat width:100%; height:100%;}
<body>
<div id="diva">
<div id="divb">
</div>
</div>
</body> |