Reputation: 2146
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
Reputation: 1146
You have to disables resizing behavior in this case
textarea {
border: none;
resize: none;
}
Upvotes: 10