Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/02/2012, 21:32
lauchag95
 
Fecha de Ingreso: septiembre-2011
Ubicación: La Plata, Buenos Aires
Mensajes: 26
Antigüedad: 12 años, 7 meses
Puntos: 0
Google Chrome muestra un texto con mucho mas margen ¡y no encuentro la solución!

Cita:
Estimados:

Solucioné el inconveniente tan sólo usando DIVS en cambio de <P>. Gracias de todas formas.

Hola!

Ya intenté encontrar el error quitando partes y probando que podría causar esto y no sé, me estoy volviendo loco! agradecería su ayuda.
CSS:
Código CSS:
Ver original
  1. <style type="text/css">
  2. body,td,th {
  3.     font-family: Verdana, Geneva, sans-serif;
  4.     font-size: 12px;
  5.     color: #000;
  6. }
  7. body {
  8.     background-color: #FFF;
  9.     margin:0;
  10. }
  11. a {
  12.     font-weight: bold;
  13. }
  14. a:link {
  15.     text-decoration: none;
  16. }
  17. a:visited {
  18.     text-decoration: none;
  19. }
  20. a:hover {
  21.     text-decoration: underline;
  22. }
  23. a:active {
  24.     text-decoration: none;
  25. }
  26. .top
  27. {
  28.     height:130px;
  29.     width:100%;
  30.     background: -webkit-gradient(linear, left top, left bottom, from(#00abeb), to(#fff), color-stop(0.9, #fff));
  31. background: -moz-linear-gradient(top, #00abeb, #fff);
  32. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00abeb', endColorstr='#ffffff');
  33. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00abeb', endColorstr='#ffffff')";
  34. background: -o-linear-gradient(top, #00abeb, #ffffff);
  35.  
  36.  
  37.  
  38. }
  39. .banner{
  40.     height:130px;
  41.     width:1024px;
  42.     margin:auto;
  43. }
  44. .alerta{
  45.     height:auto;
  46.     width:1024px;
  47.     margin:auto;
  48.     text-align:center;
  49.     font-weight:bold;
  50.     font-size:30px;
  51.     color:#F00;
  52.     font-family:Verdana, Geneva, sans-serif;
  53.     }
  54.     .log
  55.     {
  56.         width:100%;
  57.         height:20px;
  58.         border-bottom:#00abeb solid 1px;
  59.         color:#000;
  60.         font-size:11px;
  61.         font-family:arial;
  62.         margin:auto;
  63.         text-align:center;
  64.         line-height:20px;
  65.     }
  66.     .top2{
  67.         height:110px;
  68.         width:1024px;
  69.     }
  70.     .logo{
  71.        
  72.         float:left;
  73.         margin-left:30px;
  74.         height:auto;
  75.         min-height:36px;
  76.  
  77.     }
  78.     .exo
  79.     {
  80.         font-family:'Exo'; font-size:36px; color:#000;
  81.        
  82.         }
  83.    
  84.        
  85. </style>


html
Código HTML:
Ver original
  1. <div class="top">
  2.     <div class="banner">
  3.         <div class="alerta">
  4.        <? include('modulos/alerta.php'); ?>
  5.         </div>
  6.         <div class="log">
  7.         <? include('log/mod.php'); ?>
  8.         </div>
  9.         <div class="top2">
  10.             <div class="logo">
  11.               <p class="exo">¡Es tu mundo!</p>
  12.               <p style=" color:#000; font-size:14px; padding-left:120px; font-family:'Lilita One', cursive;  ; ">Constrúyelo a tu manera
  13.               </p>
  14.             </div>
  15.         </div>
  16.     </div>
  17. </div>


Así se ve mi texto en IE:


Así se ve en Chrome:




¡Muchas gracias!

Última edición por lauchag95; 12/02/2012 a las 22:02