I have a Textarea box inside of div. however when I drag the textarea and push it down. Div start to mask all the contents. Is any way to expand div's heigh when user try to drag textarea down. Can I do it in css or do I need javascript or jquery?
<div style="height:400px; width:200px; background:yellow; overflow:hidden">
<textarea style="widht:150; height:200px;"></textarea>
</div>