Ver Mensaje Individual
  #8 (permalink)  
Antiguo 05/04/2008, 19:37
Avatar de Marcos071
Marcos071
 
Fecha de Ingreso: enero-2006
Ubicación: Presidencia Roque Sáenz Peña - Chaco
Mensajes: 384
Antigüedad: 18 años, 3 meses
Puntos: 5
Re: como evitar las tablas?

Aqui te dejo uno, espero te sirva...


Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">

#contieneform{width:300px; height:300px; margin:auto;}

#form{width:300px; height:300px; margin:auto; margin:auto;}

fieldset{color:#006699; border:solid 1px #006699; font-size:12px; height:300px; width:300px; margin:auto;}

#campos{ margin-top:50px;}

legend{ display:marker;}

#envio{width:50px; clear:left; margin-top:20px}

</style>
</head>

<body>


        <div id="contieneform">
        <form id="form" method="post" name="form" action="">
        <fieldset>
        <legend>Tu Formulario</legend>
        
        
		<div align="center" id="campos">
        <div>Nombre:<br />
        <input type="text" name="nombre" class="nombre"  />
        </div>

        <div>Título:<br />
        <input type="text"/>
        </div>

        <div>Comentario:<br />
        <textarea rows="5" cols="20"></textarea>
        </div>

         <div id="envio"><input type="submit" value="Enviar" />    
         </div>
          </div>
          </fieldset>
        </form>
        </div>
</body>
</html>


Última edición por Marcos071; 05/04/2008 a las 19:43 Razón: Error en texarea...