how to give equal width/size for a input type textbox or select box for all the browsers (ex: Ie7, FF2 and 3 etc..)
Now this size varies in different browsers. So I used
This worked properly.
But when I do this styling for select box its not happening.
The point is I want the text box and the select box width to be same when I am using them largely in forms..
Anyone knows the solution?? :burnt:
Code:
<input type="text" size="20" value="" />
Code:
<input type="text" value="" style="width:150px;" />
But when I do this styling for select box its not happening.
Code:
<select name="123" style="width:150px;"><option>eeee</option><option>rrrr</option></select>
Anyone knows the solution?? :burnt:
Comment