Attributes of a <textarea> tag

How to remove the resize handle from the corner of a text area?

Attributes of a <textarea> tag

There are three things to fix in the picture below. The first thing is to remove the resize mark on the down right corner. The second thing is to make the text areas transparent. The third thing is to delete the border of the text areas.

You can do this by adding the following styling attributes to the <textarea> tags.

  resize: none;
  border: none;
  background-color: transparent;