|    
			
				27/05/2009, 18:09
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: junio-2008 
						Mensajes: 85
					 Antigüedad: 17 años, 4 meses Puntos: 0 |  | 
  |  Body imagen top y bottom ayuda!  
  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>
   Última edición por prodan; 27/05/2009 a las 18:27
     |