I'm working with the textarea
element in HTML and want to remove the border of the box - pls help and want to align the text in the bottom of my textarea pls help
views:
2379answers:
3
+5
A:
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>
John Kugelman
2009-06-25 05:03:58
That won't remove the scroll buttons in IE. My solution should cover that.
Jacob
2009-06-25 05:08:03
Inline CSS is not good
victor hugo
2009-06-25 05:31:24
+4
A:
In CSS:
textarea {
border-style: none;
border-color: Transparent;
overflow: auto;
}
Jacob
2009-06-25 05:07:22