Answer the question
In order to leave comments, you need to log in
How to make animation at input?
How to make it so that when you click on the input type="text" its border (when focused) increases, and then the border decreases (when not in focus)?
https://www.dropbox.com/s/y01sfnevohlou9g/Untitled...
Answer the question
In order to leave comments, you need to log in
Can be done simply:
input[type="text] {
border: 1px solid #555555;
}
input[type="text]:focus {
border-width: 2px;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question