在IF IE 7语句中选择<select>标记</select>

时间:2011-07-24 14:47:36

标签: css select internet-explorer-7 if-statement

我意识到IE对表单下拉列表中的CSS样式不那么友好。在我在这里建立的页面上: http://vpointproductions.com/html-code/clinique-css.html

我正在尝试将下拉列表修改为与FF,Saf和Chrome中显示的IE7相同的高度。但是,我在CSS中使用的图像使其在这些浏览器中工作仍然出现在IE 7中。我试图在IE 7中包含一个if语句来解决这个问题,但我没有运气。我正在使用的CSS在这里: http://vpointproductions.com/html-code/clinique-stylesheet.css

1 个答案:

答案 0 :(得分:0)

您可以使用条件评论来定位IE7

<!--[if IE 7]>

    //place your styles here or a link to an IE7 stylesheet

<![endif]-->

将其放在文档的头部。

此处有更多信息:http://msdn.microsoft.com/en-us/library/ms537512(v=vs.85).aspx