Pycharm says "CSS property 'resize' is not supported by Edge 18, IE 11". Is this a potential problem? Alternatives?

Viewed 20

I have css applied to a textarea and Pycharm says resize is not supported by Edge 18. Is this going to be a problem with Edge browser? I don't know how much I should care about this inspection tbh...

    textarea {
    resize: none;
}
1 Answers

As I know this is the only way to do this. CanIUse says that it has 82% coverage. I don't think this will be a problem.

P.S. It is only supported by the webkit browsers

Related