1.textarea-container {
2 position: relative;
3}
4.textarea-container textarea {
5 width: 100%;
6 height: 100%;
7 box-sizing: border-box;
8}
9.textarea-container button {
10 position: absolute;
11 top: 0;
12 right: 0;
13}
1<div class="textarea-container">
2 <textarea name="foo">Some content here...</textarea>
3 <button>Menu</button>
4</div>