May 24, 2006 #1 emozley Technical User Jan 14, 2003 769 GB I am trying to make a form that has a combination of text boxes, drop downs and a scrolling text box. Is there any way of setting the <textarea> width to 100% of the cell that it's in or can you only define it in terms of rows and cols. Thanks very much Ed
I am trying to make a form that has a combination of text boxes, drop downs and a scrolling text box. Is there any way of setting the <textarea> width to 100% of the cell that it's in or can you only define it in terms of rows and cols. Thanks very much Ed
May 24, 2006 #2 Vragabond Programmer Jul 23, 2003 5,100 AT Code: <textarea style="width: 100%;"></textarea> Use CSS. It was designed to style elements and clearly supports the width for textarea. Upvote 0 Downvote
Code: <textarea style="width: 100%;"></textarea> Use CSS. It was designed to style elements and clearly supports the width for textarea.
May 24, 2006 Thread starter #3 emozley Technical User Jan 14, 2003 769 GB Perfect! thanks very much Upvote 0 Downvote