Removing the textarea border in HTML

border, css, html, textarea

Solution

textarea {
    border: none;
    outline: none;
}

Problem

I'm working with the `textarea` element in HTML and want to remove the border of the box. I also want to align the text in the bottom of my `textarea`.

Original source