Ver Mensaje Individual
  #7 (permalink)  
Antiguo 02/02/2010, 09:57
cslbcn
 
Fecha de Ingreso: marzo-2008
Mensajes: 383
Antigüedad: 16 años, 1 mes
Puntos: 5
Respuesta: Barra Estatica Como la de Facebook, alguien tiene idea como se hace ?

Es simplemente CSS:

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.         <title>Barra inferior fija</title>
  6.         <!-- CSS -->
  7.         <style type="text/css">
  8.  
  9.         #contenedor {
  10.             height: 2000px;
  11.             width: 950px;
  12.             background-color:#39F;
  13.         }
  14.         #barra{
  15.             height: 20px;
  16.             width: 950px;
  17.             background-color:#999;
  18.             position:fixed;
  19.             bottom:0px;
  20.             margin:0 auto;
  21.         }
  22.  
  23.         </style>
  24.     </head>
  25.  
  26.     <body>
  27.      
  28.         <div id="contenedor"></div>    
  29.         <div id="barra">Barra fija</div>    
  30.  
  31.     </body>
  32.    
  33. </html>