Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/07/2009, 19:02
vega_012
 
Fecha de Ingreso: noviembre-2008
Ubicación: Lima
Mensajes: 48
Antigüedad: 15 años, 5 meses
Puntos: 2
Respuesta: Como le podré hacer para centrar un formulario

prueba con esto haber
<html>
<head>
<title>centrar formulario</title>
</head>

<body>
<center>
<form id="form1" name="form1" method="post" action="">
nombre :
<input type="text" name="textfield" />
</form>
</center>
Dentro de una tabla
<table width="100%" border="0">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td colspan="2" align="center">
<form id="form2" name="form2" method="post" action="">
nombre :
<input type="text" name="textfield" />
</form>
</td>
</tr>
</table>
</body>
</html>