Given the following code:
<form>
<input type="text">
<select>
<option>Foobar</option>
</select>
</form>
With the following CSS:
input, select {
width: 200px;
}
Internet Explorer displays the text input slightly larger than the select box. Is there a way (that hopefully doesn't break compatibility with other browsers) to make them exactly the same width?
Thanks,
gnuvince