+ 1
How to make the buttons appear to be inside the textarea?
2 Answers
+ 5
Wrap your textarea and buttons inside div with position relative and you buttons inside div with position absolute
<div style="position: relative;">
<textarea cols="30" rols="40" placeholder="Type here...."></textarea>
<div style="position: absolute; left: 0px; bottom: 0px;">
<button>Send</button>
<button id="clear">Clear</button>
</div>
</div>
+ 2
thank you