|    
			
				09/02/2008, 17:12
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: septiembre-2005 Ubicación: Córdoba 
						Mensajes: 1.830
					 Antigüedad: 20 años, 1 mes Puntos: 55 |  | 
  |  Re: Problema con ubicacion de controles en un formulario.  
  deberias hacer algo asi<label>Nombre:</label>
 <input type="text" name="cualquiera" />
 y luego
 label, input {
 display:block;
 float:left;
 }
 label {
 clear:left;
 width:100px;
 }
 
 input {
 width:200px;
 }
     |