Reputation: 147
I have input field type is text.
What is the pattern to allow Numbers, characters and Dot(special character) to input field?
Upvotes: 0
Views: 8644
Reputation: 1597
input[type="text"]:valid{
color:green;
}
input[type="text"]:invalid{
color:red;
}
<input type="text" pattern="^[a-zA-Z0-9\.]*$" value="test1234.">
Upvotes: 3