DEV Community

Cover image for Checking if an input is empty with CSS
Zell Liew πŸ€—
Zell Liew πŸ€—

Posted on • Updated on • Originally published at zellwk.com

Checking if an input is empty with CSS

Is it possible to know if an input is empty with only CSS?

I had that question when I tried to make an autocomplete component for Learn JavaScript. Basically, I wanted to:

  1. Hide a dropdown if the input is empty
  2. Show the dropdown if the input is filled

autocomplete demo from https://learnjavascript.today

I found a way to do it. It's not perfect. There are a few nuances involved, but I want to share it with you.

The form

First, let's build a form so we're on the same page. We're going to use a simple form with one input.

<form>
  <label for="input"> Input </label>
  <input type="text" id="input" />
</form>
Enter fullscreen mode Exit fullscreen mode

When the input is filled, we want to change its border-color to green. Here's an example of what we're creating:

when input is filled, borders should turn green

Checking if the input is empty

I relied on HTML form validation to check whether the input is empty. That meant I needed a required attribute.

<form>
  <label> Input </label>
  <input type="text" name="input" id="input" required />
</form>
Enter fullscreen mode Exit fullscreen mode

At this point, it works fine when the input is filled. Borders turned green.

borders turned green when input is filled

But there's a problem: If the user enters a whitespace into the field, the borders turn green too.

Borders turn green even if user enters a whitespace

Technically, this is correct. The input is filled because the user typed something into it.

But I didn't want whitespaces to trigger a blank dropdown menu (for the autocomplete component).

It wasn't enough. I needed a more stringent check.

Further checks

HTML gives you the ability to validate inputs with regular expressions with the pattern attribute. I decided to test it out.

Since I didn't want whitespaces to be recognized, I started with the \S+ pattern. This pattern meant: One or more characters that's not a whitespace.

<form>
  <label> Input </label>
  <input type="text" name="input" id="input" required pattern="\S+"/>
</form>
Enter fullscreen mode Exit fullscreen mode

Sure enough, it worked. If a user enters a whitespace into the field, the input doesn't get validated.

Input doesn't get validated when whitespaces are entered

But when a whitespace is entered (anywhere) into the input, the input gets invalidated.

Borders turned from greet to black when a whitespace is added.

Unfortunately, this pattern didn't work in my use case.

In Learn JavaScript's autocomplete component, I taught students how to complete a list of countries. The names of some countries had spaces...

Dropdown contains countries with names that have spaces in them. For example, United States.

I had to include whitespaces in the mix.

The next best alternative I could think of is \S+.*. This means 1 or more non-whitespace characters, followed by zero or more (any) characters.

<form>
  <label> Input </label>
  <input type="text" name="input" id="input" required pattern="\S+.*"/>
</form>
Enter fullscreen mode Exit fullscreen mode

This worked! I can enter whitespaces into the mix now!

Borders remained green when whitespace is added in the middle of the input

But there's one more problem... the input doesn't validate if you START with a whitespace...

Borders turned black when whitespace is added to the start of input

And that's the problem I couldn't resolve. More on this later.

When I worked on this article, I came across another interesting question: Is it possible to style an invalid state when the input is filled incorrectly?

Invalidating the input

We don't want to use :invalid because we'll kickstart the input with an invalid state. (When the input is empty, it's already invalid).

This is where Chris Coyier swooped in to the rescue with " Form Validation UX in HTML and CSS".

In the article, Chris talks about a :placeholder-shown pseudo-class. It can be used to check whether a placeholder is shown.

The idea is:

  1. You add a placeholder to your input
  2. If the input is hidden, it means the user typed something into the field
  3. Proceed with validation (or invalidation)

Here's the CSS (simplified version. For the complete version, check out Chris's article)

/* Show red borders when filled, but invalid */
input:not(:placeholder-shown) {
  border-color: hsl(0, 76%, 50%);
}
Enter fullscreen mode Exit fullscreen mode

Since I had both validation AND invalidation styles, I had to ensure the valid styles came after the invalid styles.

/* Show red borders when filled, but invalid */
input:not(:placeholder-shown) {
  border-color: hsl(0, 76%, 50%);;
}

/* Show green borders when valid */
input:valid {
  border-color: hsl(120, 76%, 50%);
}
Enter fullscreen mode Exit fullscreen mode

Here's a demo for you to play with:

See the Pen Pure CSS Empty validation by Zell Liew (@zellwk) on CodePen.

Note: Edge doesn't support :placeholder-shown, so it's probably not a good idea to use it in production yet. There's no good way to detect this feature.

Now back to the problem I couldn't resolve.

The problem with pattern

The pattern attribute is wonderful because it lets you accept a regular expression. This regular expression lets you validate the input with anything you can think of.

But... the regular expression must match the text completely. If the text doesn't get matched completely, the input gets invalidated.

This created the problem I mentioned above. (Reminder of the problem: If a user enters a whitespace first, the input becomes invalid).

I couldn't find a regular expression that worked for all use-cases that I thought of. If you want to try your hand at creating a regular expression that I need, I'd be more than welcome to receive the help!

Here are the use-cases:

// Should not match
''
' '
'  '
'   '

// Should match
'one-word'
'one-word '
' one-word'
' one-word '
'one phrase with whitespace'
'one phrase with whitespace '
' one phrase with whitespace'
' one phrase with whitespace '
Enter fullscreen mode Exit fullscreen mode

(Then again, I might be overthinking it... πŸ™„).

Update: Problem solved!

Many readers were generous enough to email me their solutions. I want to thank everyone who helped. Thank you so much!

The cleanest solution I received is: .*\S.* by Daniel O'Connor. This means:

  • .*: Any character
  • \S: Followed one non-whitespace character
  • .*: Followed by any character

Other regexes I received include:

And many others!

Here's a codepen with the updated solution by Daniel:

See the Pen Pure CSS Empty validation by Zell Liew (@zellwk) on CodePen.

Wrapping up

Yes, it is possible to validate a form with pure CSS, but there are potential problems with validation when whitespace characters are involved.

If you don't mind the whitespaces, it works perfectly. Have fun trying this pattern out! (Sorry, I can't help it).


Thanks for reading. This article was originally posted on my blog. Sign up for my newsletter if you want more articles to help you become a better frontend developer.

Top comments (9)

Collapse
 
rhymes profile image
rhymes • Edited

Hi Zell, great article!

This regexp should work: \s?\S+.*

it means: 1 optional space followed by at least one non space followed by whatever.

I tested it and:

  • one space = red
  • one space followed by one non space = green
  • more than one space followed by anything = red
  • spaces between chars = green
Collapse
 
zellwk profile image
Zell Liew πŸ€—

Thanks!

Collapse
 
ben profile image
Ben Halpern

Damn this is good CSS stuff. Awesome post Zell.

Collapse
 
zellwk profile image
Zell Liew πŸ€—

Thank you!

Collapse
 
pipobscure profile image
Pip Obscureℒ️ • Edited

Try pattern=β€œ\S+β€œ which means has to contain 1 or more non-white-space characters

Collapse
 
lexlohr profile image
Alex Lohr

Since pattern works like new RegExp('^'+pattern+'$'), this won't work if there are white-space characters in the input value.

Collapse
 
kateika profile image
kateika

thanks for great investigation! Could you please reveal browser support for this method?)

Collapse
 
ewbi profile image
ewbi
Collapse
 
joshichinmay profile image
Chinmay Joshi

This is pretty cool. Thanks for sharing Zell. :)