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
.
Select the text box or shape border that you want to remove. Under Drawing Tools, on the Format tab, in the Shape Styles group, click Shape Outline, and then click No Outline.
We can specify the no border property using CSS border: none, border-width : 0, border : 0 properties. Approach 1: We will give border-color, border-style properties to both headings, for showing text with border and no-border. For no border heading, we will use the border-width : 0 which will result in no border.
Above, we have the div class to no-border class and this allow us to remove the borders from the element.
textarea { border: none; outline: none; }
In CSS:
textarea { border-style: none; border-color: Transparent; overflow: auto; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With