样式<选择>IF IE 7 语句中的标记

发布于 2024-11-25 23:31:51 字数 481 浏览 3 评论 0原文

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

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

I realize that IE is not as friendly with CSS styles on the dropdown in a form. On a page I am building here:
http://vpointproductions.com/html-code/clinique-css.html

I am trying to fix the dropdowns to be the same height in IE7 as it appears in FF, Saf, and Chrome. However, the image I am using in the CSS to make it work in those browsers is still appearing in IE 7. I am trying to include an if statement for IE 7 to fix this issue but I am having no luck. The CSS i am using is here:
http://vpointproductions.com/html-code/clinique-stylesheet.css

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡淡の花香 2024-12-02 23:31:51

您可以使用条件注释来仅针对 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

You could use conditional comments for targeting just IE7

<!--[if IE 7]>

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

<![endif]-->

Place this in the head of your document.

More info here: http://msdn.microsoft.com/en-us/library/ms537512(v=vs.85).aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文