JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="c6" />
CSS
input {
border:1px solid red;
padding-top:0px;
}
JavaScript
$(":input").click(function(){ $(this).animate({'padding-bottom': '50px'},1000);
});
<input type="text" id="c6" />
input {
border:1px solid red;
padding-top:0px;
}
$(":input").click(function(){ $(this).animate({'padding-bottom': '50px'},1000);
});