How to make the buttons appear to be inside the textarea? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to make the buttons appear to be inside the textarea?

https://code.sololearn.com/Wzc8uYOdZWE2/?ref=app

13th Jun 2018, 3:37 PM
B.D
B.D - avatar
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>
13th Jun 2018, 5:12 PM
Toni Isotalo
Toni Isotalo - avatar
+ 2
thank you
13th Jun 2018, 5:24 PM
B.D
B.D - avatar