如何设置文本输入的样式以便它可以在 Internet Explorer 上运行?
我已经尝试了一切,以便能够使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您必须在 IE 中设置样式,只需给它一个类即可。
也就是说,如果您只想定位特定的文本字段。
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.