0
Text area styling.
can someone please give me examples of some cool text area styling using css. can you please mention the attributes which can be used along with the text area tag ?
4 Respuestas
+ 2
this website has got you covered
https://www.w3schools.com/tags/tag_textarea.asp
0
thanks
0
You can style <textarea> by CSS like a box: padding, border, background-color …
By default a <textarea> is styled by the browser (user agent stylesheet) so it looks different depending on the browser of the user. Simply overwrite these styles with your CSS rules.
E.g. to get rid of the resizing button at the left bottom, you can write:
textarea {resize: none;}
Your <textarea> should match to the rest of your form elements and you get also a good guide here:
https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/Styling_HTML_forms
Happy styling!
0
thanks bro