vote up 2 vote down star

So I have a <select> element on my page, and it worked fine in all browsers until IE8 came along. I've seen all the literature about the IE7 compatibility view and how to use <meta> to force the browser into that mode. But the question still remains: why the heck does IE8 fail to display a simple <select> properly? Has anyone figured this out yet? Here are two URLs that demonstrate the problem. The first one displays properly in IE8, but only because I'm using the <meta> tag to force it into IE7 compatibility mode. The second one is identical to the first, except that I'm not forcing IE7 compatibility.

  1. http://www.currensys.com/mhw.php
  2. http://www.currensys.com/mhf.php

Anyone have any ideas?

flag
Confirm repro on IE8 for the second link. +1 – Adrian Godong Aug 10 at 15:55
Thanks so much to Adrian and zowat. You guys just saved me weeks of digging; I would have focused on the HTML for a long time before ever thinking that it might have to do with the CSS. Thanks again! – Rob Bishop Aug 10 at 16:09

2 Answers

vote up 4 vote down check

Apparently, IE8 doesn't like one of your CSS styles.

SELECT { display: table }

Removing the above style displays the drop down list.

Update: more information from W3School, the value of "table" is not supported by IE.

link|flag
vote up 1 vote down

You have a css property setting display: table on select elements. This seems to be the problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.