Can someone clarify the following?
If I am using a textarea
HTML input where I understand I can provide
rows
Specifies the visible number of lines in a text areacols
Specifies the visible width of a text area
From Textarea Tag Doc
If I am using textarea with Boostrap's form-control
class, the width will be overriden to 100% so the cols
attribute won't be used at all. Am I right? Is that the case in "all popular" browsers? Are there any special cases or I can just skip the cols
attribute.
Thanks!