BirdieNamNam
Programmer
Dear friends!
A use a class like this
to be used at input fields, for example a text field.
But I also want select boxes to look the same.
Can I do this, the properties in my class does not work on a select box?
Best regards, Sebastian.
A use a class like this
Code:
.StdNumInput
{
width: 50pt;
background-color: #fffedf;
border-style: solid;
border-color: #9999ff;
}
Code:
<INPUT TYPE="text" CLASS="StdNumInput">
But I also want select boxes to look the same.
Code:
<SELECT CLASS="StdNumInput>
<OPTION>Blah-blah</OPTION>
...
Best regards, Sebastian.