Scenario :
- At the bottom of the page, there is a resizable textarea,
- However, having the resize button at the bottom-right corner does not provide the best user experience (try it out),
Issue :
- I am wondering if there is a way to move the resize button to the top-right corner instead?
textarea
{
position: absolute;
bottom: 10px;
resize: vertical;
overflow: auto;
}
<textarea>
test
</textarea>