Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/12/2011, 12:16
eybel
 
Fecha de Ingreso: marzo-2007
Mensajes: 782
Antigüedad: 17 años, 1 mes
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-size11px;
}
#email {
    
width140px;
    
height28px;
}
#password {
    
width140px;
    
height28px;
}
#login {
    
cursorpointer;

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 {
    
margin0;
    
padding0;
    
border0;
    
outline0;
    
font-size100%;
    
vertical-alignbaseline;
    
backgroundtransparent;
    
font-family"Trebuchet MS"ArialHelveticasans-serif;
    
text-decorationnone;
}

body {
    
line-height1;
    
font-family"Trebuchet MS"ArialHelveticasans-serif;
}

ol,ul {
    list-
stylenone;
}

blockquote,{
    
quotesnone;
}

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

/* remember to highlight inserts somehow! */
ins {
    
text-decorationnone;
}

del {
    
text-decorationline-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    
border-spacing2px;
    *
border-collapsecollapse;
}

input {
    
border0;


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