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