When required is defined in a form field, Firefox 4 automatically shows a red border to this element, even BEFORE the user hit the submit button.

<input type="text" name="example" value="This is an example" required />

I think this is disturbing from the user since he/she didn't made any mistake at the beginning.

I'm looking to hide that red border in the initial state, but show it when the user hit the send button if there is a missing field marked as required.

I looked at :required and :invalid from new pseudo selector, but the changes are for before AND after the validation. (from Firefox 4 Required input form RED border/outline)

Is there a way to disable the red border before the user submit the form, and show it if there is some missing fields ?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
+50

This was a little tricky but I've set up this exmaple: http://jsfiddle.net/c5aTe/ which is working for me. Basically the trick seems to be getting around having placeholder text which is invalid. Otherwise you should be able do this:

input:required {
    box-shadow:none;
}
input:invalid {
    box-shadow:0 0 3px red;
}

or something similar...

BUT since FF4 decides to validate your placeholder text (no idea why...) the solution in the fiddle (little hacky - uses !important) is required.

Hope that helps!

EDIT

Doh!! - I feel well silly. I've updated my fiddle: http://jsfiddle.net/c5aTe/2/ - you can use the :focus pseudo class to keep the element styled as if valid while the user is typing. This will still highlight in red if the content is invalid when the item loses focus but I think there is only so much you can do with the designed behaviour...

HTH :)


EDIT after acceptance:

Summary of examples at OP's request (note the first two are only designed for FF4 - not Chrome)

  1. Fix for FF validating your place holder text: http://jsfiddle.net/c5aTe/
  2. Fix for FF validating as you type: http://jsfiddle.net/c5aTe/2
  3. JS solution toggling styles/validation: http://jsfiddle.net/c5aTe/4
link|improve this answer
Great breakthrough, but the "invalid" error seems to be shown when the user click on the input => when the input is empty, BEFORE he actually write something. But maybe what I want is a bug in FF4 that can't be resolved :/ – cx42net May 31 '11 at 15:51
But +1 for your way to limiting the horrible red box shadow :) – cx42net May 31 '11 at 15:52
Don't think you can do this because, strangely, it's almost too clever and validates on the fly. You could be clever with some additional javascript that added or removed a class from the form when it is submitted. Then you could override any validation highlighting based on that class being present or not. Nice thing about this is that it is still using the native validation not so nice is requiring additional js... :| – lnrbob May 31 '11 at 16:00
had some inspiration while making breakfast - added above! – lnrbob Jun 1 '11 at 6:38
Clever! :p But if you take a look, you have the shadow for the original state AND the box shadow for the invalid state. Both of them are shown. I start to believe that this is a mistake from Mozilla, they didn't thought about the initial state. If this is correct and no one else add a working completely way to do it, I won't accept your answer but I will give you the bounty (hope this is possible, if not, I will accept your answer). You deserve it :) Thanks for your help! – cx42net Jun 1 '11 at 7:29
show 5 more comments
feedback

This worked well for me:

input:invalid {
-moz-box-shadow: none;

}

link|improve this answer
1  
The problem here is that after the validation, the box shadow remains to none and the user doesn't have any clue of where the errors occurs. What I want is to NOT display the red border in the normal state of the form, but show it when the user submit/blur the form if there is an error. – cx42net May 31 '11 at 11:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.