如何设置文本输入的样式以便它可以在 Internet Explorer 上运行?

发布于 2024-09-16 19:47:10 字数 497 浏览 4 评论 0原文

我已经尝试了一切,以便能够使用 Internet Explorer 来设置文本输入的样式。不幸的是 IE 不支持使用 [type=text] 所以这是不可能的。

我什至在我的网页上添加了对 http://ie7-js.googlecode.com 的支持,

<!--[if lt IE 9]><script src="http://ie7-js.googlecode.com/svn/trunk/lib/IE9.js"></script><![endif]-->

但没有骰子。我还想让 :hover 在我的跨度上与 IE 一起工作,但它不起作用。

对此的任何帮助将不胜感激。我是 CSS 领域的新手,Internet Explorer 总是给我带来惊喜。我什至不得不专门为其使用单独的样式表:(

I have tried EVERYTHING to be able to style JUST text inputs with internet explorer. Unfortunately IE doesn't support using [type=text] so that's out of the question.

I even added support for http://ie7-js.googlecode.com to my webpage with

<!--[if lt IE 9]><script src="http://ie7-js.googlecode.com/svn/trunk/lib/IE9.js"></script><![endif]-->

but no dice. I'd also like to get :hover working on my spans with IE but it doesn't work.

Any help on this would be appreciate so much. I'm new to the CSS scene and Internet Explorer keeps throwing me zingers. I even had to use a separate style sheet specifically for it :(

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

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

发布评论

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

评论(1

末骤雨初歇 2024-09-23 19:47:10
input.class {
   border: 1px solid #ccc;
}

<input type="text" class="class">

如果您必须在 IE 中设置样式,只需给它一个类即可。

也就是说,如果您只想定位特定的文本字段。

input.class {
   border: 1px solid #ccc;
}

<input type="text" class="class">

Just give it a class if you have to style it in IE.

That is if you want to target a specific text field only.

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