Archives

Achieving user friendly Labels with .NET

 • Tags: ,

Making your forms as user friendly as possible is something we all strive for and one common technique is to make our form labels clickable – focusing on the relevant input field upon click. This can easily be achieved by using the for attribute: 1 2 <label for="inputSample">Label</label> <input id="inputSample" type="text" /> Simple enough when [...]

Continue reading article