Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/12/2011, 12:16
eybel
 
Fecha de Ingreso: marzo-2007
Mensajes: 782
Antigüedad: 19 años, 6 meses
Puntos: 16
Respuesta: Problemas con Cross-Browser reset.css

intente eso y no se corrigió. Lo puse en la <td> de la imagen. Adjunto imagenes, el codigo html en Dreamweaver, Safari, Firefox y el css para los inputs:
(No estoy muy familiarizado con line-heigth, es una propiedad para que elemento o cual es la funcion?)


Dreamweaver:


Safari:


Firefox:


Firefox con Firebug:




Mi HTML:
Código PHP:
<table>
    <
tr>
            <
td>E-mail</td>
           <
td>Password</td>
            <
td>&nbsp;</td>
    </
tr> 
    
    <
tr>
          <
td><input name="email" type="text" id="email"></td>
          <
td><input name="password" type="password" id="password"></td>
         <
td style="line-height:0"><img src="images/login.png" alt="login" name="login" width="70" height="28" id="login" onClick="test()"></td>

   </
tr>
    <
tr>
          <
td><input type="checkbox" name="keep_loggedin" id="keep_loggedin">
            <
span id="mini_link"> Keep me logged in</span></td>
          <
td><a href="password_reset.php">
            <
span id="mini_link"> &nbsp;Forgot your password?</span></a></td>
         <
td>&nbsp;</td>
   </
tr>
  
</
table> 

template.css:
Código PHP:
#mini_link {
    
color: #039;
    
font-size: 11px;
}
#email {
    
width: 140px;
    
height: 28px;
}
#password {
    
width: 140px;
    
height: 28px;
}
#login {
    
cursor: pointer;
} 
reset.css:
Código PHP:
@charset "UTF-8"; /* CSS Document */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
    
margin: 0;
    
padding: 0;
    
border: 0;
    
outline: 0;
    
font-size: 100%;
    
vertical-align: baseline;
    
background: transparent;
    
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    
text-decoration: none;
}

body {
    
line-height: 1;
    
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

ol,ul {
    list-
style: none;
}

blockquote,q {
    
quotes: none;
}

/* remember to define focus styles! */
:focus {
    
outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    
text-decoration: none;
}

del {
    
text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    
border-spacing: 2px;
    *
border-collapse: collapse;
}

input {
    
border: 0;
} 

Última edición por eybel; 16/12/2011 a las 12:41