I'm trying to set the width of a textbox via a style sheet but it isn't working for Netscape 4.7
This is what the page looks like:
<form>
<input type="text" class="t1">
</form>
This is what the style sheet looks like:
..t1 {
width: 15;
}
It works in IE and Netscape 7 but not in Netscape 4. In NS4, it appears that the "width" property of a textbox doesn't work at all.... you have to use "size". I tried using "size" in the style sheet but it doesn't work.
Any advice would be greatly appreciated. Thanks!
--
Jeff Nibler
This is what the page looks like:
<form>
<input type="text" class="t1">
</form>
This is what the style sheet looks like:
..t1 {
width: 15;
}
It works in IE and Netscape 7 but not in Netscape 4. In NS4, it appears that the "width" property of a textbox doesn't work at all.... you have to use "size". I tried using "size" in the style sheet but it doesn't work.
Any advice would be greatly appreciated. Thanks!
--
Jeff Nibler
Comment