29/07/2009, 19:02
|
| | Fecha de Ingreso: noviembre-2008 Ubicación: Lima
Mensajes: 48
Antigüedad: 16 años 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> </td>
<td> </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> |