Entry
how do i specify widths(size attribute) in css for form elements such as textboxes and select boxes?
Oct 10th, 2001 08:41
Ben Gordon, Param R.,
In IE you can add style="width: 500px;" to the tag of the element like
<input type="text" class="blue" style="width: 500px;">
just change the # of px's to suit the size you need
however this will not work in NS 4.xx, the only way you can accomplish
in NS is to change the font size which will in turn change the box size
as NS 4.xx allows almost NO use of CSS in form elements
<input type="text" class="blue" style="font-size: 16px;">
Hope This Helps