I want to change the text color of required function.Is it possible to do?
For example,
<!DOCTYPE html>
<html>
<body>
<form>
<input rows="4" cols="50" name="comment" required/>
<input type="submit">
</form>
</body>
</html>
When we run the above code,when we click on submit without entering text box it give error as "Please fill out this field".This is black in color.But, I want this should be in red color.Is it possible to change the color?