[EMAIL PROTECTED] wrote:
Hi

Im using the following code for a country / city dropdown. when a user
selects a country, the dropdown for city populates with the
appropriate list i.e: UK > London, Manchester, Liverpool etc... An
issue that Im seeing in Firefox but not in IE is that when I attempt
to jump to a set of countries by hitting a key on the keyboard i.e:
such as F to jump to France, Finland etc... the dropdown doesnt jump
down as far as these countries. Ive searched google for answers but
there doesnt seem to be anyone with the same issue.

Any ideas?

Chris

I ran into the same issue recently at Plazes. What caused the issue was a declared width for the select. I ended up using min- and max-width instead of width, which didn't cause that strange behavior:

select {
    width: 150px;
    max-width: 150px;
    min-width: 150px;
}
:root select { /* hide from IE */
    width: auto;
}


--Klaus

Reply via email to