Re: Form "field" Elements

Sometimes I may want vertical or horizontal space between the label and
input, and not want clicks on the between space to focus the input element.

The entire label block brings the input to focus:
http://jsfiddle.net/69ytg/




On Tue, Jun 10, 2014 at 2:12 PM, Boris Zbarsky <bzbarsky@mit.edu> wrote:

> On 6/10/14, 1:42 PM, Eric Devine wrote:
>
>> <form>
>>    <p>
>>      <label>Name</label>
>>      <input />
>>    </p>
>> </form>
>>
>> has always felt semantically awkward to me
>>
>
> Why not:
>
>   <form>
>     <label>Name <input/></label>
>   </form>
>
> ?
>
> -Boris
>
>

Received on Tuesday, 10 June 2014 18:27:39 UTC