You are currently viewing Form Follows Function: How to Properly Label Online Form Fields

Form Follows Function: How to Properly Label Online Form Fields

When was the last time you enjoyed filling out a form? No, seriously, like really enjoyed it? I mean kicked in your roommateโ€™s bedroom door to show them a video of a gaze of chunky adorable raccoons tearing at a grown man holding a storage container full of hotdogs kinda fun. Never?

Not surprising. Because, the role of a form isnโ€™t to be fun. A form is a tool that collects data from a user, usually in exchange for services or additional information. A form needs to be efficient, elegant, and accessible.

Forms that meet the criteria I just laid out are more likely to see submissions (conversions). Thatโ€™s because these forms will clearly request information, which limits confusion, which in turn means your users will more often than not fill in the form correctly and submit it on their first try.

Forms are a big topic where accessibility, user experience, and CRO are concerned. And while there are varying opinions on how to approach forms from each perspective, there is one tactic that is a simple starting point to an elegant, accessible form that all disciplines can agree on: proper form field labeling. When done right, label elements expand the interact-able range of your fields. When a user clicks or focuses on a label, that part of your form will gain focus. No wasted space; the labels actively assist in form completion.

However, when done incorrectly, form label elements can actually detract from the user experience, impact accessibility, and ultimately lead to decreased conversions.

Common Form Label Problems

In my experience the most common issue I find when auditing forms for accessibility is poor labeling. Labels are often hidden and โ€œreplacedโ€ with some other aspect of a field. Here are a few examples of those replacements. Let us see how many you are guilty ofโ€ฆ

  • Hiding or excluding a label and โ€œreplacingโ€ it with the placeholder attribute on an input field.
  • Adding a valueless option as the first choice in a select field as a way to describe the fieldโ€™s purpose instead of displaying a label. Example โ€œWhat country do you live in?โ€ or โ€œCurrent level of existential dread?โ€
    In this example, the selection instructions "how many kittens do you need" is within the text field, which is incorrect. Instead, the description of what this question is looking for should live permanently above the input field.
  • Not labeling a group of checkboxes/radio buttons, but attempting to convey the overall meaning of the group through the individual choices.
    In this example, the user should select between two options, "a taco is my preferred sandwich" and "a hot dog is my preferred sandwich." However, the section has no label and the radio button text attempts to provide context, which is incorrect. Instead, the group should be labelled "what type of sandwich do you prefer?" with the options being simply "taco" or "hot dog."

These solutions usually meet aesthetic wants or satisfy internal requests, but none are correct. There is no substitute for a field label. They are a requirement and need to be kept visible and consistent. Should you find yourself in a disagreement about displaying labels vs. not displaying them, the person on the display side of the argument is correct.

Anatomy of the Label Element

To start off, I will clarify what the label element is and how itโ€™s used in practice.

A label is a textual element in HTML that links to a field to supply more context. The most general usage of a label serves as the title of a field, such as โ€œfirst nameโ€ or โ€œzip code.โ€ Label usage also extends to error messages for specific fields as a way to link errors to a field so that assistive technology can easily access the error message language.

A label element is opened and closed with the <label> and </label> tag. General attributes like โ€œIDโ€ and โ€œclassโ€ can be applied but labels specifically support theโ€โ€˜forโ€ attribute, which is used to link the label to a specific field. The value of the โ€œforโ€ attribute is the ID of the field the label is tied to. Here is all the markup it takes to do it right:

<label for=โ€œfirstNameFieldโ€>First Name</label>

<input id="firstNameField" type="text"/>

Correctly Implementing Labels in Your Forms

For some, merely discussing the issues in the previous section could be enough to correct them. For everyone still here, this section is where I will dive into how to properly label an online form.

Keep Labels Visible and Consistently Placed

Easy. Donโ€™t hide labels and keep them in the same place. It really is that simple. The label can go above, below, or to the left side of the field; there are plenty of options to design around.

Do Not Use the Placeholder Attribute as a Label

As I mentioned in the common problems section, the placeholder attribute of a field is not a replacement for a label. Placeholders disappear when a field is changed and generally have lower visibility.

Avoid Floating Labels

I also do not recommend using floating labels. This is a design pattern where the label of the field is present, but lays over the input until the user clicks or focuses into it. The label then moves out of the wayโ€”or worseโ€”fades out. Often, this little touch of flair causes the labelโ€™s text to shrink, and the user may not properly track the animation or change in visual state. This introduces possible points of friction and really isnโ€™t worth the perceived oomph.

Avoid Generic Labeling

Before I go into detail about repeated labels I would like to touch on generic ones. The label attached to a field should clearly communicate the information needed to successfully complete the form. A field that requires a userโ€™s full name is a good example of how a strong descriptive label can convey the request.

A generic label in a form will not get flagged as a WCAG failure, it is not a requirement butโ€ฆ I consider generic labels to be an accessibility concern because unclear communication can make access to content and services difficult. Lack of clarity creates friction, and friction repels users.

To provide an example of a generic label letโ€™s examine a field that expects a user to supply their full name that is only labeled โ€œname.โ€ Name what? Name is generic and leaves a lot of room for interpretation. More context should be supplied to narrow down possibilities and instruct the user to complete the field successfully.

A better label would be โ€œFull Name.โ€ This can be taken further considering the purpose of the information; โ€œLegal Name,โ€ โ€œYour Name,โ€œ โ€œFirst and Last Name,โ€ or โ€œPreferred Nameโ€ are better, more descriptive examples of a label that requests a name from a user.

I have an anecdote about generic field labeling to share. It revolves around a form that collected information for a home moving quote. An important field on the form collected the expected date of the move and was labeled, simply, โ€œMove Date.โ€ This crucial field was causing users to bounce from the form before submitting it.

The solution to the problem you ask? Changing the label to โ€œEstimated Moving Date.โ€ One small change to the label increased the completions of the form. The added context of the word โ€œestimatedโ€ conveyed to the user that they can ask for a quote without being 100% certain of their moving date.

Avoid Repeating Labels

Something worth noting is that because a label references the ID of a field, one field could have multiple labels that reference it but a single label can only reference one field. In most cases that shouldnโ€™t be a problem, but this is the internet which means one size doesnโ€™t fit all.

For example, imagine a form that asks the user to list four favorite foods. It would be redundant to have four fields that each have a generic label of โ€œfavorite food,โ€ or even more specific labels of โ€œfavorite food 1,โ€ โ€œfavorite food 2,โ€ and so on. If your form allowed the user to add infinite favorite foods, this would get ridiculous.

Should you find yourself in a place where you need one label to apply to multiple fields, there is a way to do that using the โ€œaria-labelledbyโ€ attribute.

Using Aria-labelledby for Multiple Fields With the Same Label

If you are unfamiliar with ARIA I want to quickly touch on two things. First, it stands for Accessible Rich Internet Applications and is an additional set of markup in HTML specifically for assistive technology. Second, is a warning that ARIA has to be used correctly or it can really mess up the experience for an assistive technology user. If you donโ€™t need to use it, then itโ€™s best you donโ€™t.

But now back to my example. You gotta have those โ€œfavorite foodโ€ labels! aria-labelledby is placed on the input element, and references the ID of the label that applies to the field. aria-labelledby can also tie multiple labels to a single field by putting a space between each ID.

Here is an example of aria-labelledby being applied to four text fields that all use the same label:

<label id="favFoodLabel">Favorite Foods</label>

<input type="text" aria-labelledby="favFoodLabel"/>

<input type="text" aria-labelledby="favFoodLabel"/>

<input type="text" aria-labelledby="favFoodLabel"/>

<input type="text" aria-labelledby="favFoodLabel"/>

Thatโ€™s It!

Ensuring labels are present and properly linked to fields, keeping them visible, and making sure they are clear and descriptive are some easy steps to creating good forms that allow the most amount of people to interact with them. And while I understand that Minimalism is a tempting (and popular) design philosophy, the forms you put out in the world can be aesthetically pleasing, but that goal should be secondary to functionality. You, the person reading this, likely fill out forms all the time. Search your experiences and think of how many times you needed a form to be useful and respect your time rather than fun to look at.

We also put a really nice form on this page that properly instructs you to supply your email address in return for blog updates. You should try it, for educational purposesโ€ฆ of course.

The post Form Follows Function: How to Properly Label Online Form Fields appeared first on Portent.