Modern browsers now automatically validate forms using new HTML attributes. How can we style the auto browser validation for forms to have a consistent look across different browsers like Firefox, Chrome, IE, Opera, and Safari?
I am seeking to achieve this using CSS exclusively.
Below is an example of HTML code:
<form>
E-mail: <input type="email" name="email" required="required" /> <input type="submit" />
</form>
Thank you, Andrew