Removing the textarea border in HTML

textarea {
    border: none;
    outline: none;
}

In CSS:

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