Im working on a small project which has a textarea and i need help in making the text area expand on mouse click like that of twitter and facebook. the textarea should look lik
This can be done without the use of JavaScript/jQuery, using CSS transitions.
textarea { height: 1em; width: 50%; padding: 3px; transition: all 0.5s ease; } textarea:focus { height: 4em; }