Can someone clarify the following?
If I am using a textarea HTML input where I understand I can provide
rowsSpecifies the visible number of lines in a text areacolsSpecifies 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!