vote up 0 vote down star

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

flag

64% accept rate

3 Answers

vote up 5 vote down check

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>
link|flag
That won't remove the scroll buttons in IE. My solution should cover that. – Jacob Jun 25 at 5:08
2  
Inline CSS is not good – victor hugo Jun 25 at 5:31
vote up 0 vote down
textarea {
border: 0;
overflow: auto; }

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

link|flag
vote up 4 vote down

In CSS:

  textarea { 
    border-style: none; 
    border-color: Transparent; 
    overflow: auto;        
  }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.