Do I have to define classes in CSS that specify widths in Px? And then apply them to each individual <input> tag (since I have a few default sizes)?
Lemme know, or if you need more detail :)
-adi
Posted 10 October 2001 - 06:14 PM
Do I have to define classes in CSS that specify widths in Px? And then apply them to each individual <input> tag (since I have a few default sizes)?
Lemme know, or if you need more detail :)
-adi
Posted 13 October 2001 - 07:47 AM
<style type="text/css">
input {width: 120px;}
</style>
You can must change 120px..Every input-thing will be 120px, also buttons, etc.
You can change that with using other CSS classes for that.
Grtz
(Edited by sw00zh at 10:48 am on Oct. 13, 2001)
Posted 15 October 2001 - 09:54 AM
I used the following CSS
____________________________________
INPUT {
background: transparent;
background-color: White;
border: 1px solid #000000;
color: #000000;
font-family: Verdana,Arial,Helvetica;
font-size: x-small;
text-align: left;
scrollbar-face-color: #CCCCCC;
scrollbar-shadow-color: #FFFFFF;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: #FFFFFF;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-track-color: #FFFFFF;
scrollbar-arrow-color: #000000
}
.largeinput {
width: 120px
}
.mediuminput {
width: 70px
}
.smallinput {
width: 20px
}
____________________________________
and I called the classes a la:
<input type="text" class="largeinput">
but netscape is still not paying attention. Bastards.
Posted 15 October 2001 - 10:14 AM
I would love if I could even just use
<input type="text" size="70">
but even *that* doesn't seem to work.
Thank god they sold themselves to AOL so they can continue to die a slow and non-aesthetically pleasing death
Posted 25 October 2001 - 02:43 PM
Netscape needs <input> and other form elements to belong to a <form> tag without having anything in between in the way of tables and othersuch crap. Blah.
I've seen it validate with a warning millions of times, but never thought of it this way.
Anyone else have similar results?
-adi
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
