Remove "sticks" from a textarea

2

I have a textarea and would like to know how to remove these "scratches":

    
asked by anonymous 14.09.2017 / 00:24

1 answer

3

Just add in your CSS:

textarea {
    resize: none;
}

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

    
14.09.2017 / 00:29