select box?

liunx

Guest
how do i get my select box to look the same as my text box's?

input {
width: 11em;
height: 12px;
}

example

Stock: <br />
<input type="text" name="Stock"> <br />
Name: <br />
<input type="text" name="Name"> <br />
Category: <br />
<select name="Cat">....

stock and name are the same height, length

the select is not.

thanx/* Affect INPUT, SELECT, and TEXTAREA tags. */
input, select, textarea {
/* Rules: */
width: 11em;
height: 12px;
}
 
Back
Top