I'm working with the textarea
element in HTML and want to remove the border of the box. I also want to align the text in the bottom of my textarea
.
Add this to your <head>
:
<style type="text/css">
textarea { border: none; }
</style>
Or do it directly on the textarea:
<textarea style="border: none"></textarea>