-
Which one can animate the width of search input when get focus?
-
- outline
- color
- focus
- transition
- None of these
Correct Option: D
For animating the width of search input when it gets focus we used CSS transition property,
input[type=text] {-webkit-transition: width 09s ease-in-out; transition: width 0.9s ease-in-out; } input[type=text]:focus {width:100%;}