[RESOLVED] getting a textarea and form input to be the same width

liunx

Guest
i have a small form with single line text inputs and multi line textarea inputs and i can get them to be the same width. its totally different in different browsers and equal in none

here is my page:
<!-- m --><a class="postlink" href="http://www.thehopeandanchor.net/temp/sh/order.php">http://www.thehopeandanchor.net/temp/sh/order.php</a><!-- m -->

here is my html for both fields. i no that size value is caricter width but is there any to define in pixes of %?


<input name="name" type="text" id="name" value="" size="37" />

<textarea name="address" cols="37" rows="5" id="address"></textarea><input name="name" type="text" id="name" value="" style='width: 200px;' />
<br>
<textarea name="address" style='width: 200px; height: 50px;' id="address"></textarea>thanks! i did not think it was going to that simple
 
Top