Removing the textarea border in HTML

Viewed 142843

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.

5 Answers
textarea {
    border: none;
    outline: none;
}

In CSS:

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

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

Also, you can remove the resize icon

textarea {resize:none;}
Related