I\'d like to set the textarea\'s rows and cols attributes via CSS.
textarea
rows
cols
How would I do this in CSS?
It is equivalent to:
textarea { height: 4em; width: 50em; }
where 1em is equivalent to the current font size, thus make the text area 50 chars wide. see here.