Reputation: 914
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
.
Upvotes: 59
Views: 166925
Reputation: 1026
This one is great:
<style type="text/css">
textarea.test
{
width: 100%;
height: 100%;
border-color: Transparent;
}
</style>
<textarea class="test"></textarea>
Upvotes: 5
Reputation:
textarea {
border: 0;
overflow: auto; }
less CSS ^ you can't align the text to the bottom unfortunately.
Upvotes: 1
Reputation: 78840
In CSS:
textarea {
border-style: none;
border-color: Transparent;
overflow: auto;
}
Upvotes: 55