I have seen with the more modern browsers that they are automatically starting to validate forms with the new HTML attributes that you can place on them.
What I would like to know is how can we style the auto browser validation for forms so that they all look the same?
So what is the CSS for: Firefox, Chrome, IE, Opera, Safari +any other browser.
I am looking to do this with pure CSS.
Here is some sample HTML:
<form>
E-mail: <input type="email" name="email" required="required" /> <input type="submit" />
</form>
Thanks Andrew