How do I style the html 5 form validation error messages with css?
|
|
Chrome provides a native look and feel for their validation error speach bubbles. The error bubble is made up of four containing elements that are not normative elements. These four elements are stylable via pseudo-elements that apply to separate sections of the bubble:
|
|||||||||||
|
|
Currently, there is no way to style those little validation tooltips. The only other option, which is what I have chosen to do, is to disable the browser validation all together for now and rely on my own client-side validation scripts. According to this article: http://blog.oldworld.fr/index.php?post/2010/11/17/HTML5-Forms-Validation-in-Firefox-4 "The simplest way to opt out is to add the novalidate attribute to your |
||||
|
|
|
Use pseudo selectors, as easwee said. For example, to make the form element green when valid, and red when invalid, do something like this:
If you need a full reference of these, head to Mozilla's reference. P.S. Sorry if I'm doing these answers wrong, I'm new to this community. |
|||||
|