Remove "scratches" from a textarea

Asked

Viewed 435 times

2

I have a textarea and would like to know how to remove these "scratches": inserir a descrição da imagem aqui

1 answer

4


Just add in your CSS:

textarea {
    resize: none;
}

Remembering that this will remove the "scratch" and also disable the resizing of textarea.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.