hola que tal, miren quiero poner 2 imagenes que tengo, una en el top del body y otra en el bottom, como puedo hacer?, tengo un codigo en css para hacerlo pero siempre me coloca la del top o la del bottom las 2 juntas nunca.
edit: ya lo solucione
asi es el codigo
CSS -
body {
margin: 0;
padding: 0;
background-color: #FFF; /* optional */
}
#wraptop {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: url('imagen_top.gif') top left no-repeat;
}
#wrapbot {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: url('imagen_bottom.gif') bottom left no-repeat;
}
HTML -
<body>
<div id="wraptop">
<div id="wrapbot">
<br style="clear: both">
ACA EN EL MEDIO TODA LA WEB TABLAS Y WEBADAS.
</div> <!-- end wrapbot -->
</div> <!-- end wraptop -->
</body>