Estoy tratando de agregar un div al pie de mi pagina
El tema es que no se por que tengo que forzarle a que tenga un tamaño, sino aparece alineado a la izquierda
Pueden verlo aca por ej:
http://www.taringacs.net/steam/
el codigo html es este
Código:
El codigo del css es este<div id="footer"> <center> <a rel="nofollow" href="http://www.localhost.net.ar" title="LocalHost - Soluciones Innovadoras" target="_blank" class="localhost"></a> <a rel="nofollow" href="http://www.taringa.net" title="Taringa! - Inteligencia Colectiva" target="_blank" class="taringa"></a> <a rel="nofollow" href="http://www.localstrike.com.ar" title="LocalStrike - Live your Game!" target="_blank" class="localstrike"></a> <a rel="nofollow" href="http://www.argentina.ar" title="Creado en Argentina" target="_blank" class="argentina"></a> </center> </div>
Código:
Alguna idea? realmente estoy perdido#footer { margin:10px auto; text-align:center; width:445px; height:25px; } #footer .localhost { background:transparent url(/images/fmarcas_lh.png) no-repeat scroll 0 0; width:115px; height:25px; display:block; float:left; } #footer .taringa { background:transparent url(/images/fmarcas_t.png) no-repeat scroll 0 0; width:102px; height:25px; display:block; float:left; } #footer .localstrike { background:transparent url(/images/fmarcas_ls.png) no-repeat scroll 0 0; width:122px; height:25px; display:block; float:left; } #footer .argentina { background:transparent url(/images/fmarcas_ar.png) no-repeat scroll 0 0; width:102px; height:25px; display:block; float:left; } #footer .localhost:hover,#footer .taringa:hover,#footer .localstrike:hover,#footer .argentina:hover { background-position:0 -25px; }
Gracias