kumar
kumar

Reputation: 147

What is the html pattern to allow numbers characters and dots in input field

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

Answers (1)

Gowtham
Gowtham

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

Related Questions