Es6-RegEx

Regular Expressions

by Lavakumar T

HTML

<div>
 Birthday : <input type="text" pattern='\d\d\-d\d\-d\d\d\d'>
</div>

CSS

input[type="text"]:invalid{
  color:red;
}