Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/06/2009, 13:04
Avatar de willyfc
willyfc
 
Fecha de Ingreso: octubre-2008
Ubicación: Santa Cruz - Bolivia
Mensajes: 662
Antigüedad: 15 años, 6 meses
Puntos: 40
Respuesta: duda de maquetacion con css

Pruebalo de esta manera:

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. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Untitled Document</title>
  5. <style type="text/css">
  6. #celdatextoazul{
  7. width:400px;
  8. height:278px;
  9. text-align:left;
  10. background-color:#9999CC;
  11. display:table;
  12. }
  13.  
  14. #celdatextoazul img{
  15. float: right;
  16. display:block;
  17. margin:5px;
  18. /*list-style-image:url(imagenes/logazo copia.gif) -- Esto no entiendo que hace aquí*/
  19. }
  20. #celdatextoazul p {
  21. font-family: Verdana, Arial, Helvetica, sans-serif;
  22. font-size: 12px;
  23. color:#000000;
  24. display:block;
  25. padding:10px;
  26. clear:both;
  27. }
  28.    
  29. #celdatextoazul h5 {
  30.     font-family: "Times New Roman", Times, serif;
  31.     font-size: 16px;
  32.     color:#CCCCCC;
  33.     padding:10px 2px;
  34.     overflow:hidden;
  35. }
  36. </head>
  37.  
  38. <div id="celdatextoazul">
  39.     <img src="imagenes/logazo copia.gif" width="180" height="66" />
  40.     <h5>Nosotros</h5>
  41.     <p>MUDANZAS 2000 S.L
  42.     es un grupo líder a nivel nacional en transportes, mudanzas y guardamuebles, desde 1947 a su servicio.
  43.     Ver más información</p>
  44. </div>
  45. </body>
  46. </html>
__________________
WFC
codigo82