views:

2379

answers:

3

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

+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
That won't remove the scroll buttons in IE. My solution should cover that.
Jacob
Inline CSS is not good
victor hugo
+4  A: 

In CSS:

  textarea { 
    border-style: none; 
    border-color: Transparent; 
    overflow: auto;        
  }
Jacob
A: 
textarea {
border: 0;
overflow: auto; }

less CSS ^ you can't align the text to the bottom unfortunately.