I discovered this techniques while surfing on a contact form at Eu descobri este técnicas enquanto navegava em um formulário de contato em
Iconaholic Iconaholic
The hint is using <label> tag, nice unknown trick! A dica é usar <label> tag, nice trick desconhecido!
<style> label { width: 200px; float: left; } </style> <p><label>Fake Field</label><input type="text"></p> <p><label>Fake Field 123</label><input type="text"></p> <style> rótulo (width: 200px; float: left;) </ estilo> <p> <label> Fake Campo </ label> <input type="text"> </ p> <p> <label> Fake Campo 123 </ label> <input type="text"> </ p> Apply <label> tag and specify the <label> width, and force it Aplique <label> etiqueta e especificar o <label> largura, e força-lo
located to the left with float. situada à esquerda, com float.
See example below: Veja o exemplo abaixo:

