Removing the textarea border in HTML

PROFESSOR picture PROFESSOR · Jun 25, 2009 · Viewed 121k times · Source

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.

Answer

John Kugelman picture John Kugelman · Jun 25, 2009

Add this to your <head>:

<style type="text/css">
    textarea { border: none; }
</style>

Or do it directly on the textarea:

<textarea style="border: none"></textarea>