JacopoStanchi
JacopoStanchi

Reputation: 2146

Hide the corner of <textarea>

On Firefox (at least), when we disable the border of a textarea, its bottom right corner is still visible. How can we remove it?

textarea:focus {
  outline: solid;
}

textarea {
  border: none;
}
<textarea>Hello</textarea>

Upvotes: 3

Views: 4739

Answers (2)

Anji
Anji

Reputation: 715

Try resize:none for <textarea>.

textarea{
  resize:none;
}

Upvotes: 4

Sachi.Dila
Sachi.Dila

Reputation: 1146

You have to disables resizing behavior in this case

textarea {
  border: none;
  resize: none;
}

Upvotes: 10

Related Questions