Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/10/2011, 08:37
johnk
 
Fecha de Ingreso: abril-2011
Mensajes: 19
Antigüedad: 13 años
Puntos: 0
tamaño de text iguales en diferentes resoluciones

hola gente tengo un problema con los tamaños de los text. lo que necesito es que en diferentes navegadores me tome los text alineados. con mi cogido en mi resolucion los text se ven alineados al final pero cuando abro en otro navegador o con otra resolucion quedan todos desparejos, como que se modifica el tamaño.. saben de que manera puedo parametrisar esto.? les dejo mi codigo para que puedan ver como estoy trabajando! desde ya gracias!


<div id="partida">

<FORM METHOD="post" name="foo" ACTION="" >

<input type="hidden" name="edad" value="55">

<br><table border=1>

<tr>
<td>Tomo</td>
<td><input type="text" value="1" disabled="false" name="tomo" size="7">

<td>Acta</td>
<td><input type="text" value="35" disabled="false" name="acta"size="7">

<td>Ano</td>
<td><input type="text" value="2011" disabled="false" name="ano"size="7">
</tr>

</table>

<br><p>En <input type="text" name="lugar" size="70" disabled="false"></p>
<br><p>Republica Argentina, a los <input type="text" name="fecha" size="49" disabled="false" value="<?php echo date('d/m/Y'); ?>" ><br>
<br><p>Yo Oficial Publico de este Registro Civil Inscrito el <input type="text" value="NACIMIENTO"name="año"disabled="false" size="28"> </p>
<br><p>de <input type="text" name="lugar" size="47"> D.N.I.: <input type="text" name="lugar" size="14"></p>

<br><p>Sexo <select size="1" name="sexo">
<br><option selected value="Masculino">Masculino</option>
<br><option value="Feminino">Femenino</option>
<br></select>&nbsp;&nbsp;&nbsp; Nacido el <input type="text" disabled size="43"name="fecha_nac" ><a href="#" onclick="return getCalendar(document.foo.fecha_nac);"onblur="retur n fechaaTexto(document.foo.fecha_nac)"><img src="calendario/calendar.png" border="0" /></a><br><br>



<p> a las <select name="idperfil">
<option selected value="hora">Hora</option>
<?php
for ($i = 0; $i <= 23; $i++) {
print '<option value="' . $i . '">' . $i . '</option>';
}
?>
</select>
: <select name="idperfil">
<option selected value="hora">Min</option>
<?php
for ($i = 0; $i <= 59; $i++) {
print '<option value="' . $i . '">' . $i . '</option>';
}
?>
</select>
horas en <input type="text" name="lugar" size="44"></p>
<br><p>Hijo de <input type="text" name="lugar" size="40">
Doc. Indent. <input type="text" maxlength="8" name="lugar" size="12"></p>
<br><p>y de <input type="text" name="lugar" size="43">
Doc. Indent. <input type="text" maxlength="8" name="lugar" size="12"></p>
<br><p>Apellido <input type="text" name="lugar" size="66"></p>
<br><p>Segun certificado de <input type="text" name="lugar" size="55"></p>
<br><p>Declarante<input type="text" name="lugar" size="38">
Doc. Indent. <input type="text" maxlength="8" name="lugar" size="12"></p>
<br><p>Domicilio <input type="text" name="lugar" size="65"> </p>
<br><p>Obra en virtud de <input type="text" name="lugar" size="58"> </p>
<br><p>Otros <br><p>Articulo n&deg;: <select size="1" name="Articulo">
<br><option selected value="Art">216</option>
<br><option value="Art">129</option>
<br></select>&nbsp;&nbsp;&nbsp;<input type="submit" value="+" name="agregarNorma"></p>
<br><p>Otros </p> <textarea name="comentarios" rows="5" cols="95"></textarea>

<br><br><p><input type="submit" value="Guardar datos" name="enviar">
<input type="submit" value="Cancelar" name="Cancelar"><p>
<!--<input type="res-left: 50"> <input type="reset" value="Restablecer" name="B2"></p>-->
</FORM></div>