Nunzio Site Admin

Joined: 08 Aug 2003 Posts: 90 Location: Tharsis Ridge (Martian lowlands)
|
Posted: Sat Aug 09, 2003 9:27 am Post subject: How can I make input boxes the same size in NS4 & IE? |
|
|
How can I make input boxes the same size in NS4 & IE?
You can, with a little experimentation, make input boxes the same size by writing your code like this:
| Code: | | <input type="text" size="18" style="width:138px;"> |
NS4 will read and follow the size attribute and IE will follow the style property. By adjusting those numbers, you can get the same size box in both browsers. |
|