using css to control size of textarea, override rows/cols, possible?
0 views
Skip to first unread message
mscir
unread,
Sep 28, 2004, 10:27:49 PM9/28/04
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
I want to control the size of a textarea using CSS instead of rows and cols, but it won't validate as 4.01 Transitional unless I include rows and cols in the html.
this won't validate:
<textarea></textarea>
this will:
<textarea rows="12" cols="22">
Is it possible to make the textarea display the same in all browsers using CSS, overriding the rows and cols settings if necessary?