Ver Mensaje Individual
  #5 (permalink)  
Antiguo 24/07/2010, 00:31
Avatar de fabianconectado
fabianconectado
 
Fecha de Ingreso: junio-2010
Ubicación: BsAs
Mensajes: 40
Antigüedad: 13 años, 10 meses
Puntos: 1
Respuesta: Como se hace un estilo de línea en CSS

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
  2.   <head>
  3.  
  4.     <style type="text/css">
  5. .line {
  6.        background-color:#bfbebe;
  7.        border-bottom:1px solid #ededed;
  8.        height:1px;
  9.     }
  10.     </style>
  11.     <title>LINEA GENIAL BY CFABRICA</title>
  12.   </head>
  13.   <body>
  14.     <div class="line"></div>
  15.   </body>
  16. </html>