SlideShare a Scribd company logo
Accessible

Floating

Labels
Accessible

Floating

Labels
Creating
Demo
Git Repo:
https://github.com/russmaxdesign/floating-label
Demo:
https://russmaxdesign.github.io/floating-label/
What are floating
labels?
Floating labels are labels that are
associated with form controls such
as input and textarea elements.
These floating labels are initially
displayed on top of the form control,
and then “floated” up and out of
the form control when it receives
focus.
Label
Example of a Floating Label in static state
Label
Example of a Floating Label in focus state
This often includes a minimalistic
approach to the design of the form
controls.
This means that input and
textarea elements are often
displayed with a border-bottom
only, so that they appear more like
lines to write on rather than inputs
to enter data into.
Traditional Input
Floating Input
Why use them?
Generally speaking, I am not a fan
of floating labels - except in some
specific circumstances.
The solution has some advantages
but also has potential User
Experience and Accessibility
issues.
The obvious question is: if you’re
not a fan, why give a presentation
about them?
Recently, the team I work with
suggested looking into floating
labels as an option. So, I decided to
try to create a non-JavaScript
version that was usable and
accessible.
Hopefully this presentation will
provide you with some things to
consider before using floating
labels, or help you make them more
usable and accessible.
What are the
concerns?
Concern 1.
Is it a form control?
My main concern is that if a
minimalist design approach is used,
it may not be clear to users that the
element is actually a form control
at all.
First name
Last Name
Email
Example of form using floating labels - in static state
This lack of clear identification could
be problematic for a range of
different audiences including
cognitive impaired and those that
are “technology challenged”.
Concern 2.
Low contrast labels
The initial labels often have very low
contrast - trying to replicate the
appearance of a placeholder.
First name
Last Name
Email
Example of form using floating labels showing low contrast labels
This means that critical information
- the form labels themselves - may
not be readable for some types of
vision impaired users.
Concern 3.
Is it already filled in?
At the other end of the spectrum, if
the label has a strong contrast it
could then be mistaken for a value
- as if the form control has already
been filled in.
First name
Last Name
Email
Example of form using floating labels showing high contrast labels
Again, this could be problematic for
cognitive impaired and/or
“technology challenged” users.
Concern 4.
Labels are too small
In some cases, the labels are
displayed in a very small font-
size.
First name
Last Name
Email
Example of form using floating labels with a very small font-size
This can be problematic for anyone
with diminished eye-sight -
especially when it is critical
information like a form label.
Concern 5.
Lack of focus state
In many cases, the form controls
and labels have no focus state.
This can cause major issues for
keyboard-only users as they may
not be able to identify the elements
that are currently in focus.
Test, test, test
Bottom line, if you are thinking
about using a floating label solution,
make sure you test with real users
to make sure it is suitable in the
proposed environment before going
too far!
And of course, make sure that any
solution is accessible to the widest
possible range of audiences and
assistive technologies.
Two main methods
While there are a range of different
methods that can be used to create
floating labels, the two most
common methods are:
Method 1:
Label only
In the static state, the label is
displayed on top of the input.
When the input receives focus, the
label is animated upwards so that it
sits above the input.
Label
Example of a Floating Label showing label in static state
Label
Example of a Floating Label showing label in focus state
Method 2:
Placeholder and label
In the static state, the placeholder
is displayed inside the input. When
the input receives focus, the
placeholder becomes invisible, and
the label is animated into view,
above the input.
Placeholder
Example of a Floating Label showing placeholder in static state
Placeholder
Label
Example of a Floating Label showing placeholder fading and label appearing
Label
Example of a Floating Label showing label above input
Which one to use?
We will be looking at how to achieve
a usable and accessible version of
the second method because it
allows us to display a separate
placeholder and label value.
This means we can display more
detailed instructions via the
placeholder, and then simpler
information via the label.
Add your first name
Example of a Floating Label showing placeholder
First name
Example of a Floating Label showing label
Desired outcomes
A lot of the outcomes listed below
are to help these floating label
controls to be more discoverable.
Static state
Before any user interaction with a
form control, the placeholder
should be visible and the label
should be hidden
Placeholder
Example of a Floating Label showing placeholder
The placeholder should be of
sufficient color contrast.
Placeholder
Placeholder text set to #666 - AA Compliant
Hover state
If a user hovers over the form
control, the placeholder and form
control should change in
appearance to indicate that the
form control is interactive.
Ideally, the form control could
change in hover state so that the
border appears on all sides of the
element - to help make it more
discoverable.
Placeholder
Example of a Floating Label in static state
Placeholder
Example of a Floating Label in hover state
Focus state
If a user focuses on the form control
(via mouse click or by tabbing to the
element), four things should
happen:
The placeholder should gradually
fade to invisible.
The label should animate into view
above the form control.
A border should appear on all sides
of the form control.
Additionally, the form control's
bottom border should change in
color - to help indicate that is is
now in “edit mode”.
Placeholder
Example of a Floating Label in static state
Label
Placeholder
Example of a Floating Label showing placeholder fading and label appearing
Label
Example of a Floating Label in focus state
Post focus state
When focus leaves the form control,
two things should happen:
The label should remain in view but
change color to indicate that it is
no longer in “edit mode” and has
been completed.
The form control’s border-bottom
color should return to the original
border-bottom color.
Placeholder
Example of a Floating Label in static state
Label
Placeholder
Example of a Floating Label showing placeholder fading and label appearing
Label
Example of a Floating Label in focus state
User value here
Label
Example of a Floating Label in post-focus state
No JavaScript
My final desired outcome was to try
to make a version that did not use
any JavaScript - unlike most of the
other examples I’d seen.
I think JavaScript plays an important
role in modern web development,
but it concerns me that developers
are relying on JavaSCript for
simple things like positioning and
animated form labels.
In order to meet all of the desired
outcomes, I’ve had to use one
experimental CSS selector. This
means that this one aspect of the
solution will only work in more
modern browsers.
However, the solution does use
basic progressive enhancement,
so almost all of the functionality
should be stable for older browsers.
The markup
Label placement
For this method, I needed the label
information to appear after the
form control in source order.
This allowed me to style the label
based on the state of the input.
For example, I was then able to
change the style of the label when
the control was in focus.
//  adjacent  sibling  selector  
.floating-­‐label__control:focus  +  .floating-­‐label__label  {  }
In an ideal world, label content
should be placed before all form
controls in source order - except
for radio buttons and checkboxes.
However, I used the “for” and “id”
attributes to explicitly associate
the label to the form control.
<div  class="floating-­‐label">  
        <label  for="input1">  
            <input  class="floating-­‐label__control"  type="text"  
placeholder="Add  your  first  name"  id="input1"  required>  
            <span  class="floating-­‐label__label">First  Name</span>  
        </label>  
</div>
I also wrapped the label around the
form control and label content.
<div  class="floating-­‐label">  
        <label  for="input1">  
            <input  class="floating-­‐label__control"  type="text"  
placeholder="Add  your  first  name"  id="input1"  required>  
            <span  class="floating-­‐label__label">First  Name</span>  
        </label>  
</div>
Finally, I placed the label content
inside a span element, so that I
could style the label content
separately to the overall label and
the form control.
<div  class="floating-­‐label">  
        <label  for="input1">  
            <input  class="floating-­‐label__control"  type="text"  
placeholder="Add  your  first  name"  id="input1"  required>  
            <span  class="floating-­‐label__label">First  Name</span>  
        </label>  
</div>
The class names
For this solution I used a BEM-like
naming conversion to make the
solution day to understand for other
developers. This meant writing the
selectors as modules, sub-modules
and modifiers.
BEM = Block, Element, Module
//  module  -­‐  or  parent  element  
.floating-­‐label  {  }  
//  sub-­‐module  -­‐  or  child  elements  
.floating-­‐label__control  {  }  
.floating-­‐label__label  {  }  
//  modifier  
.floating-­‐label__control-­‐-­‐disabled  {  }
<div  class="floating-­‐label">  
        <label  for="input1">  
            <input  class="floating-­‐label__input"  type="text"  
placeholder="Add  your  first  name"  id="input1"  required>  
            <span  class="floating-­‐label__label">First  Name</span>  
        </label>  
</div>
The SCSS
I’m going to quickly show some of
the SCSS used to create the final
floating label solution. I won’t
show all of it, but you can check out
the repo for the finer details if
interested.
Also, I am using SCSS rather than
CSS as it gives me a little bit more
control - allowing me to set some
variables that can be used multiple
times across the various rules.
Variables
All of the variables can be defined
once at the top of the SCSS file.
//  variables  
$color-­‐input-­‐text:  #000;  
$color-­‐placeholder:  #666;  
$color-­‐placeholder-­‐hover:  #000;  
$color-­‐placeholder-­‐disabled:  #ccc;  
$color-­‐label:  #1f7c8a;  
$color-­‐label-­‐focus:  #3655b1;  
$color-­‐border:  #ddd;  
$color-­‐border-­‐focus:  #3655b1;  
$color-­‐disabled-­‐background:  #f5f5f5;  
$label-­‐size:  14px;
Parent
I need to set the parent to
position:  relative as I’m going
to position the label content relative
to this parent.
//  floating-­‐label  
.floating-­‐label  {  
    position:  relative;  
    margin:  30px  0  40px;  
}
Control
For the controls, I am going to set
the border to transparent, then
reset the border-­‐bottom to a soft
gray.
//  control  
.floating-­‐label__control  {  
    width:  100%;  
    border:  none;  
    border:  1px  solid  transparent;  
    border-­‐bottom:  1px  solid  $color-­‐border;  
    padding:  .5em;  
    resize:  none;  
    color:  $color-­‐input-­‐text;  
    background:  #fff;  
}  
I then need to style the various
states of the control - in this case
hover and focus.
//  control  when  in  hover  
.floating-­‐label__control:hover  {  
    border:  1px  solid  $color-­‐border;  
}
//  control  when  in  focus  
.floating-­‐label__control:focus  {  
    border:  1px  solid  $color-­‐border;  
    border-­‐bottom:  1px  solid  $color-­‐border-­‐focus;  
    outline:  none;  
}  
I can also style the input once it has
been filled in using the valid
pseudo-class. Keep in mind that
this is only supported by the latest
browsers.
//  control  when  in  focus  and  valid  -­‐  filled  in  
.floating-­‐label__control:valid  {  
    border:  1px  solid  transparent;  
    border-­‐bottom:  1px  solid  $color-­‐border;  
    padding-­‐left:  0;  
}  
Label
Next, I need to set  position:  
absolute on the label content and
initially position it down over the
top of the input. It also has an initial
opacity of “0”.
//  label  
.floating-­‐label__label  {  
    position:  absolute;  
    top:  -­‐15px;  
    left:  0;  
    opacity:  0;  
    color:  $color-­‐label-­‐focus;  
    font-­‐size:  $label-­‐size;  
}
When the input comes into focus, I
will then style the label content so
that the opacity transitions from
“0” to “1”.
//  label  when  in  focus  
.floating-­‐label__control:focus  +  .floating-­‐label__label  {  
    opacity:  1;  
    transition:  .5s  ease;  
    -­‐webkit-­‐transform:  translateY(-­‐5px);  
transform:  translateY(-­‐5px);  
}
placeholder
Finally, I am styling the
placeholders in their various
states. I’ve only included some of
the rules used in the final product as
they are quite extensive.
//  placeholder  
::-­‐webkit-­‐input-­‐placeholder  {  
    opacity:  1;  
    color:  $color-­‐placeholder;  
}
//  placeholder  hover  
.floating-­‐label__control:hover::-­‐webkit-­‐input-­‐placeholder  {  
    color:  $color-­‐placeholder-­‐hover;  
}  
//  placeholder  -­‐  become  hidden  when  in  focus  
.floating-­‐label__control:focus::-­‐webkit-­‐input-­‐placeholder  {  
    opacity:  0;  
    transition:  1s  ease;  
}  
More…
Floating labels are problematic
Adam Silver

https://medium.com/simple-human/floating-labels-are-a-bad-
idea-82edb64220f6
Are Float Labels Really That
Problematic After All?
Matt D. Smith

https://blog.prototypr.io/are-float-labels-really-that-
problematic-after-all-da7ffe7d5417
Russ Weakley
Max Design
Site: maxdesign.com.au
Twitter: twitter.com/russmaxdesign
Slideshare: slideshare.net/maxdesign
Linkedin: linkedin.com/in/russweakley

More Related Content

What's hot (20)

PDF
Creating accessible modals and autocompletes
Russ Weakley
 
PDF
How to build accessible UI components
Russ Weakley
 
PDF
The Audio User Experience for Widgets
toddkloots
 
PDF
Accessibility in Design systems - the pain and glory
Russ Weakley
 
PDF
Accessible states in Design Systems
Russ Weakley
 
PDF
Accessible Form Hints and Errors
Russ Weakley
 
PPT
2 Day - WPF Training by Adil Mughal
Adil Mughal
 
PDF
Accessible Inline errors messages
Russ Weakley
 
PPT
Introduction to XAML and WPF
Doncho Minkov
 
PPTX
WPF For Beginners - Learn in 3 days
Udaya Kumar
 
PPT
Grasping The LightSwitch Paradigm
Andrew Brust
 
PDF
Neue Infos rund um WCAG 2.0
Eric Eggert
 
PDF
Creating an Accessible button dropdown
Russ Weakley
 
PPTX
Visusual basic
Mandavi Classes
 
PPTX
Windows Presentation Foundation
Deepika Chaudhary
 
PDF
Android app development guide for freshers by ace web academy
Ace Web Academy -Career Development Center
 
PDF
Knockout in action
Gerardo Leyes
 
PDF
Visual basic 6.0
sanket1996
 
PDF
Vb tutorial
Saikarthik103212
 
PPT
Meaning Of VB
Mohit Verma
 
Creating accessible modals and autocompletes
Russ Weakley
 
How to build accessible UI components
Russ Weakley
 
The Audio User Experience for Widgets
toddkloots
 
Accessibility in Design systems - the pain and glory
Russ Weakley
 
Accessible states in Design Systems
Russ Weakley
 
Accessible Form Hints and Errors
Russ Weakley
 
2 Day - WPF Training by Adil Mughal
Adil Mughal
 
Accessible Inline errors messages
Russ Weakley
 
Introduction to XAML and WPF
Doncho Minkov
 
WPF For Beginners - Learn in 3 days
Udaya Kumar
 
Grasping The LightSwitch Paradigm
Andrew Brust
 
Neue Infos rund um WCAG 2.0
Eric Eggert
 
Creating an Accessible button dropdown
Russ Weakley
 
Visusual basic
Mandavi Classes
 
Windows Presentation Foundation
Deepika Chaudhary
 
Android app development guide for freshers by ace web academy
Ace Web Academy -Career Development Center
 
Knockout in action
Gerardo Leyes
 
Visual basic 6.0
sanket1996
 
Vb tutorial
Saikarthik103212
 
Meaning Of VB
Mohit Verma
 

Similar to Creating Acessible floating labels (20)

PDF
Creating a Simple, Accessible On/Off Switch
Russ Weakley
 
PPTX
Essential html tweaks for accessible themes
Martin Stehle
 
PPTX
Building and styling forms
anna-anna
 
PDF
Accessible names & descriptions
Russ Weakley
 
PPTX
Accessibility and universal usability
Sarah Hudson
 
PPTX
Spec-driven Development
SV.CO
 
PDF
Introduction to HTML
Professional Guru
 
PPTX
Module 5-Positioning and Navigation(Chapters 5 & 6).pptx
kamalsmail1
 
PPTX
Salesforce Spring '17 Top 10 Features
Michael Gill
 
DOCX
The visual studio start page is shown in the figure below
Tan Ps
 
PPT
How to use a blog for publishing scientific research: A training guide part 2
AfricanCommonsProject
 
PDF
BEM - CSS, Seriously
Roland Lösslein
 
PDF
Vskills certified html designer Notes
Vskills
 
PDF
These aren't the SCs you're looking for ... (mis)adventures in WCAG 2.x inter...
Patrick Lauke
 
PPT
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Sean Burgess
 
PDF
Introduction to html5
kolev-prp
 
PPT
Web 2.0 Lessonplan Day1
Jesse Thomas
 
PDF
InRoads V8i Templates Library Creation
Joe Lukovits
 
PPT
Jasig Spring 2010 Tab Tags
dimpsey
 
PDF
BEM it! Introduction to BEM methodology
Varya Stepanova
 
Creating a Simple, Accessible On/Off Switch
Russ Weakley
 
Essential html tweaks for accessible themes
Martin Stehle
 
Building and styling forms
anna-anna
 
Accessible names & descriptions
Russ Weakley
 
Accessibility and universal usability
Sarah Hudson
 
Spec-driven Development
SV.CO
 
Introduction to HTML
Professional Guru
 
Module 5-Positioning and Navigation(Chapters 5 & 6).pptx
kamalsmail1
 
Salesforce Spring '17 Top 10 Features
Michael Gill
 
The visual studio start page is shown in the figure below
Tan Ps
 
How to use a blog for publishing scientific research: A training guide part 2
AfricanCommonsProject
 
BEM - CSS, Seriously
Roland Lösslein
 
Vskills certified html designer Notes
Vskills
 
These aren't the SCs you're looking for ... (mis)adventures in WCAG 2.x inter...
Patrick Lauke
 
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Sean Burgess
 
Introduction to html5
kolev-prp
 
Web 2.0 Lessonplan Day1
Jesse Thomas
 
InRoads V8i Templates Library Creation
Joe Lukovits
 
Jasig Spring 2010 Tab Tags
dimpsey
 
BEM it! Introduction to BEM methodology
Varya Stepanova
 
Ad

More from Russ Weakley (13)

PDF
Accessible chat windows
Russ Weakley
 
PDF
A deep dive into accessible names
Russ Weakley
 
PDF
What is WCAG 2 and why should we care?
Russ Weakley
 
PDF
Building an accessible progressive loader
Russ Weakley
 
PDF
What is accessibility?
Russ Weakley
 
PDF
Accessibility in Pattern Libraries
Russ Weakley
 
PDF
Building an accessible auto-complete - #ID24
Russ Weakley
 
PDF
Building an accessible auto-complete
Russ Weakley
 
PDF
Deep Dive into Line-Height
Russ Weakley
 
PDF
Understanding the mysteries of the CSS property value syntax
Russ Weakley
 
PDF
Specialise or cross-skill
Russ Weakley
 
PDF
CSS pattern libraries
Russ Weakley
 
PDF
Responsive Web Design - more than just a buzzword
Russ Weakley
 
Accessible chat windows
Russ Weakley
 
A deep dive into accessible names
Russ Weakley
 
What is WCAG 2 and why should we care?
Russ Weakley
 
Building an accessible progressive loader
Russ Weakley
 
What is accessibility?
Russ Weakley
 
Accessibility in Pattern Libraries
Russ Weakley
 
Building an accessible auto-complete - #ID24
Russ Weakley
 
Building an accessible auto-complete
Russ Weakley
 
Deep Dive into Line-Height
Russ Weakley
 
Understanding the mysteries of the CSS property value syntax
Russ Weakley
 
Specialise or cross-skill
Russ Weakley
 
CSS pattern libraries
Russ Weakley
 
Responsive Web Design - more than just a buzzword
Russ Weakley
 
Ad

Recently uploaded (20)

PPTX
YSPH VMOC Special Report - Measles Outbreak Southwest US 7-20-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
PPTX
THE JEHOVAH’S WITNESSES’ ENCRYPTED SATANIC CULT
Claude LaCombe
 
PPTX
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
DOCX
Unit 5: Speech-language and swallowing disorders
JELLA VISHNU DURGA PRASAD
 
PPTX
10CLA Term 3 Week 4 Study Techniques.pptx
mansk2
 
PPTX
Artificial Intelligence in Gastroentrology: Advancements and Future Presprec...
AyanHossain
 
PPTX
PROTIEN ENERGY MALNUTRITION: NURSING MANAGEMENT.pptx
PRADEEP ABOTHU
 
PPTX
Rules and Regulations of Madhya Pradesh Library Part-I
SantoshKumarKori2
 
PPTX
I INCLUDED THIS TOPIC IS INTELLIGENCE DEFINITION, MEANING, INDIVIDUAL DIFFERE...
parmarjuli1412
 
PDF
Module 2: Public Health History [Tutorial Slides]
JonathanHallett4
 
PPTX
Gupta Art & Architecture Temple and Sculptures.pptx
Virag Sontakke
 
PPTX
Command Palatte in Odoo 18.1 Spreadsheet - Odoo Slides
Celine George
 
PPTX
Electrophysiology_of_Heart. Electrophysiology studies in Cardiovascular syste...
Rajshri Ghogare
 
PPTX
Introduction to Probability(basic) .pptx
purohitanuj034
 
PDF
TOP 10 AI TOOLS YOU MUST LEARN TO SURVIVE IN 2025 AND ABOVE
digilearnings.com
 
PDF
Virat Kohli- the Pride of Indian cricket
kushpar147
 
PPTX
Digital Professionalism and Interpersonal Competence
rutvikgediya1
 
PPTX
Applied-Statistics-1.pptx hardiba zalaaa
hardizala899
 
PPT
DRUGS USED IN THERAPY OF SHOCK, Shock Therapy, Treatment or management of shock
Rajshri Ghogare
 
PDF
John Keats introduction and list of his important works
vatsalacpr
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 7-20-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
THE JEHOVAH’S WITNESSES’ ENCRYPTED SATANIC CULT
Claude LaCombe
 
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
Unit 5: Speech-language and swallowing disorders
JELLA VISHNU DURGA PRASAD
 
10CLA Term 3 Week 4 Study Techniques.pptx
mansk2
 
Artificial Intelligence in Gastroentrology: Advancements and Future Presprec...
AyanHossain
 
PROTIEN ENERGY MALNUTRITION: NURSING MANAGEMENT.pptx
PRADEEP ABOTHU
 
Rules and Regulations of Madhya Pradesh Library Part-I
SantoshKumarKori2
 
I INCLUDED THIS TOPIC IS INTELLIGENCE DEFINITION, MEANING, INDIVIDUAL DIFFERE...
parmarjuli1412
 
Module 2: Public Health History [Tutorial Slides]
JonathanHallett4
 
Gupta Art & Architecture Temple and Sculptures.pptx
Virag Sontakke
 
Command Palatte in Odoo 18.1 Spreadsheet - Odoo Slides
Celine George
 
Electrophysiology_of_Heart. Electrophysiology studies in Cardiovascular syste...
Rajshri Ghogare
 
Introduction to Probability(basic) .pptx
purohitanuj034
 
TOP 10 AI TOOLS YOU MUST LEARN TO SURVIVE IN 2025 AND ABOVE
digilearnings.com
 
Virat Kohli- the Pride of Indian cricket
kushpar147
 
Digital Professionalism and Interpersonal Competence
rutvikgediya1
 
Applied-Statistics-1.pptx hardiba zalaaa
hardizala899
 
DRUGS USED IN THERAPY OF SHOCK, Shock Therapy, Treatment or management of shock
Rajshri Ghogare
 
John Keats introduction and list of his important works
vatsalacpr
 

Creating Acessible floating labels

  • 5. Floating labels are labels that are associated with form controls such as input and textarea elements.
  • 6. These floating labels are initially displayed on top of the form control, and then “floated” up and out of the form control when it receives focus.
  • 7. Label Example of a Floating Label in static state
  • 8. Label Example of a Floating Label in focus state
  • 9. This often includes a minimalistic approach to the design of the form controls.
  • 10. This means that input and textarea elements are often displayed with a border-bottom only, so that they appear more like lines to write on rather than inputs to enter data into.
  • 14. Generally speaking, I am not a fan of floating labels - except in some specific circumstances.
  • 15. The solution has some advantages but also has potential User Experience and Accessibility issues.
  • 16. The obvious question is: if you’re not a fan, why give a presentation about them?
  • 17. Recently, the team I work with suggested looking into floating labels as an option. So, I decided to try to create a non-JavaScript version that was usable and accessible.
  • 18. Hopefully this presentation will provide you with some things to consider before using floating labels, or help you make them more usable and accessible.
  • 20. Concern 1. Is it a form control?
  • 21. My main concern is that if a minimalist design approach is used, it may not be clear to users that the element is actually a form control at all.
  • 22. First name Last Name Email Example of form using floating labels - in static state
  • 23. This lack of clear identification could be problematic for a range of different audiences including cognitive impaired and those that are “technology challenged”.
  • 25. The initial labels often have very low contrast - trying to replicate the appearance of a placeholder.
  • 26. First name Last Name Email Example of form using floating labels showing low contrast labels
  • 27. This means that critical information - the form labels themselves - may not be readable for some types of vision impaired users.
  • 28. Concern 3. Is it already filled in?
  • 29. At the other end of the spectrum, if the label has a strong contrast it could then be mistaken for a value - as if the form control has already been filled in.
  • 30. First name Last Name Email Example of form using floating labels showing high contrast labels
  • 31. Again, this could be problematic for cognitive impaired and/or “technology challenged” users.
  • 33. In some cases, the labels are displayed in a very small font- size.
  • 34. First name Last Name Email Example of form using floating labels with a very small font-size
  • 35. This can be problematic for anyone with diminished eye-sight - especially when it is critical information like a form label.
  • 36. Concern 5. Lack of focus state
  • 37. In many cases, the form controls and labels have no focus state.
  • 38. This can cause major issues for keyboard-only users as they may not be able to identify the elements that are currently in focus.
  • 40. Bottom line, if you are thinking about using a floating label solution, make sure you test with real users to make sure it is suitable in the proposed environment before going too far!
  • 41. And of course, make sure that any solution is accessible to the widest possible range of audiences and assistive technologies.
  • 43. While there are a range of different methods that can be used to create floating labels, the two most common methods are:
  • 45. In the static state, the label is displayed on top of the input. When the input receives focus, the label is animated upwards so that it sits above the input.
  • 46. Label Example of a Floating Label showing label in static state
  • 47. Label Example of a Floating Label showing label in focus state
  • 49. In the static state, the placeholder is displayed inside the input. When the input receives focus, the placeholder becomes invisible, and the label is animated into view, above the input.
  • 50. Placeholder Example of a Floating Label showing placeholder in static state
  • 51. Placeholder Label Example of a Floating Label showing placeholder fading and label appearing
  • 52. Label Example of a Floating Label showing label above input
  • 53. Which one to use?
  • 54. We will be looking at how to achieve a usable and accessible version of the second method because it allows us to display a separate placeholder and label value.
  • 55. This means we can display more detailed instructions via the placeholder, and then simpler information via the label.
  • 56. Add your first name Example of a Floating Label showing placeholder
  • 57. First name Example of a Floating Label showing label
  • 59. A lot of the outcomes listed below are to help these floating label controls to be more discoverable.
  • 61. Before any user interaction with a form control, the placeholder should be visible and the label should be hidden
  • 62. Placeholder Example of a Floating Label showing placeholder
  • 63. The placeholder should be of sufficient color contrast.
  • 64. Placeholder Placeholder text set to #666 - AA Compliant
  • 66. If a user hovers over the form control, the placeholder and form control should change in appearance to indicate that the form control is interactive.
  • 67. Ideally, the form control could change in hover state so that the border appears on all sides of the element - to help make it more discoverable.
  • 68. Placeholder Example of a Floating Label in static state
  • 69. Placeholder Example of a Floating Label in hover state
  • 71. If a user focuses on the form control (via mouse click or by tabbing to the element), four things should happen:
  • 72. The placeholder should gradually fade to invisible.
  • 73. The label should animate into view above the form control.
  • 74. A border should appear on all sides of the form control.
  • 75. Additionally, the form control's bottom border should change in color - to help indicate that is is now in “edit mode”.
  • 76. Placeholder Example of a Floating Label in static state
  • 77. Label Placeholder Example of a Floating Label showing placeholder fading and label appearing
  • 78. Label Example of a Floating Label in focus state
  • 80. When focus leaves the form control, two things should happen:
  • 81. The label should remain in view but change color to indicate that it is no longer in “edit mode” and has been completed.
  • 82. The form control’s border-bottom color should return to the original border-bottom color.
  • 83. Placeholder Example of a Floating Label in static state
  • 84. Label Placeholder Example of a Floating Label showing placeholder fading and label appearing
  • 85. Label Example of a Floating Label in focus state
  • 86. User value here Label Example of a Floating Label in post-focus state
  • 88. My final desired outcome was to try to make a version that did not use any JavaScript - unlike most of the other examples I’d seen.
  • 89. I think JavaScript plays an important role in modern web development, but it concerns me that developers are relying on JavaSCript for simple things like positioning and animated form labels.
  • 90. In order to meet all of the desired outcomes, I’ve had to use one experimental CSS selector. This means that this one aspect of the solution will only work in more modern browsers.
  • 91. However, the solution does use basic progressive enhancement, so almost all of the functionality should be stable for older browsers.
  • 94. For this method, I needed the label information to appear after the form control in source order.
  • 95. This allowed me to style the label based on the state of the input. For example, I was then able to change the style of the label when the control was in focus.
  • 96. //  adjacent  sibling  selector   .floating-­‐label__control:focus  +  .floating-­‐label__label  {  }
  • 97. In an ideal world, label content should be placed before all form controls in source order - except for radio buttons and checkboxes.
  • 98. However, I used the “for” and “id” attributes to explicitly associate the label to the form control.
  • 99. <div  class="floating-­‐label">          <label  for="input1">              <input  class="floating-­‐label__control"  type="text"   placeholder="Add  your  first  name"  id="input1"  required>              <span  class="floating-­‐label__label">First  Name</span>          </label>   </div>
  • 100. I also wrapped the label around the form control and label content.
  • 101. <div  class="floating-­‐label">          <label  for="input1">              <input  class="floating-­‐label__control"  type="text"   placeholder="Add  your  first  name"  id="input1"  required>              <span  class="floating-­‐label__label">First  Name</span>          </label>   </div>
  • 102. Finally, I placed the label content inside a span element, so that I could style the label content separately to the overall label and the form control.
  • 103. <div  class="floating-­‐label">          <label  for="input1">              <input  class="floating-­‐label__control"  type="text"   placeholder="Add  your  first  name"  id="input1"  required>              <span  class="floating-­‐label__label">First  Name</span>          </label>   </div>
  • 105. For this solution I used a BEM-like naming conversion to make the solution day to understand for other developers. This meant writing the selectors as modules, sub-modules and modifiers. BEM = Block, Element, Module
  • 106. //  module  -­‐  or  parent  element   .floating-­‐label  {  }   //  sub-­‐module  -­‐  or  child  elements   .floating-­‐label__control  {  }   .floating-­‐label__label  {  }   //  modifier   .floating-­‐label__control-­‐-­‐disabled  {  }
  • 107. <div  class="floating-­‐label">          <label  for="input1">              <input  class="floating-­‐label__input"  type="text"   placeholder="Add  your  first  name"  id="input1"  required>              <span  class="floating-­‐label__label">First  Name</span>          </label>   </div>
  • 109. I’m going to quickly show some of the SCSS used to create the final floating label solution. I won’t show all of it, but you can check out the repo for the finer details if interested.
  • 110. Also, I am using SCSS rather than CSS as it gives me a little bit more control - allowing me to set some variables that can be used multiple times across the various rules.
  • 112. All of the variables can be defined once at the top of the SCSS file.
  • 113. //  variables   $color-­‐input-­‐text:  #000;   $color-­‐placeholder:  #666;   $color-­‐placeholder-­‐hover:  #000;   $color-­‐placeholder-­‐disabled:  #ccc;   $color-­‐label:  #1f7c8a;   $color-­‐label-­‐focus:  #3655b1;   $color-­‐border:  #ddd;   $color-­‐border-­‐focus:  #3655b1;   $color-­‐disabled-­‐background:  #f5f5f5;   $label-­‐size:  14px;
  • 114. Parent
  • 115. I need to set the parent to position:  relative as I’m going to position the label content relative to this parent.
  • 116. //  floating-­‐label   .floating-­‐label  {      position:  relative;      margin:  30px  0  40px;   }
  • 118. For the controls, I am going to set the border to transparent, then reset the border-­‐bottom to a soft gray.
  • 119. //  control   .floating-­‐label__control  {      width:  100%;      border:  none;      border:  1px  solid  transparent;      border-­‐bottom:  1px  solid  $color-­‐border;      padding:  .5em;      resize:  none;      color:  $color-­‐input-­‐text;      background:  #fff;   }  
  • 120. I then need to style the various states of the control - in this case hover and focus.
  • 121. //  control  when  in  hover   .floating-­‐label__control:hover  {      border:  1px  solid  $color-­‐border;   }
  • 122. //  control  when  in  focus   .floating-­‐label__control:focus  {      border:  1px  solid  $color-­‐border;      border-­‐bottom:  1px  solid  $color-­‐border-­‐focus;      outline:  none;   }  
  • 123. I can also style the input once it has been filled in using the valid pseudo-class. Keep in mind that this is only supported by the latest browsers.
  • 124. //  control  when  in  focus  and  valid  -­‐  filled  in   .floating-­‐label__control:valid  {      border:  1px  solid  transparent;      border-­‐bottom:  1px  solid  $color-­‐border;      padding-­‐left:  0;   }  
  • 125. Label
  • 126. Next, I need to set  position:   absolute on the label content and initially position it down over the top of the input. It also has an initial opacity of “0”.
  • 127. //  label   .floating-­‐label__label  {      position:  absolute;      top:  -­‐15px;      left:  0;      opacity:  0;      color:  $color-­‐label-­‐focus;      font-­‐size:  $label-­‐size;   }
  • 128. When the input comes into focus, I will then style the label content so that the opacity transitions from “0” to “1”.
  • 129. //  label  when  in  focus   .floating-­‐label__control:focus  +  .floating-­‐label__label  {      opacity:  1;      transition:  .5s  ease;      -­‐webkit-­‐transform:  translateY(-­‐5px);   transform:  translateY(-­‐5px);   }
  • 131. Finally, I am styling the placeholders in their various states. I’ve only included some of the rules used in the final product as they are quite extensive.
  • 132. //  placeholder   ::-­‐webkit-­‐input-­‐placeholder  {      opacity:  1;      color:  $color-­‐placeholder;   }
  • 133. //  placeholder  hover   .floating-­‐label__control:hover::-­‐webkit-­‐input-­‐placeholder  {      color:  $color-­‐placeholder-­‐hover;   }  
  • 134. //  placeholder  -­‐  become  hidden  when  in  focus   .floating-­‐label__control:focus::-­‐webkit-­‐input-­‐placeholder  {      opacity:  0;      transition:  1s  ease;   }  
  • 136. Floating labels are problematic Adam Silver https://medium.com/simple-human/floating-labels-are-a-bad- idea-82edb64220f6
  • 137. Are Float Labels Really That Problematic After All? Matt D. Smith https://blog.prototypr.io/are-float-labels-really-that- problematic-after-all-da7ffe7d5417
  • 138. Russ Weakley Max Design Site: maxdesign.com.au Twitter: twitter.com/russmaxdesign Slideshare: slideshare.net/maxdesign Linkedin: linkedin.com/in/russweakley