样式表单时 IE css 问题
这个网站在 Firefox 中运行良好,尽管在 IE7 中联系表单无法正确显示。
输入/文本区域未读取背景图像和颜色属性(style.css line:273)
#contact_form 输入,#contact_form 文本区域,#contact_form 选择 { 背景:url(“../images/input-bg.gif”)repeat-x向左滚动#2E190B; 边框:1px实线#FF8A00; 颜色:#FFFFFF; 底部填充:5px; 顶部填充:6px; }
单选选项“发送给我一份副本”,在 IE 中具有白色背景颜色( style.css行:280)
#contact_form fieldset .checkbox 输入,#contact_form fieldset .radio 输入 { 背景:无; 边框:无; 显示:块; 浮动:向左; 填充:0; }
提交按钮,在 IE 中这些是白色且没有背景图像。
This site works perfectly in Firefox, although in IE7 the contact form is not displaying correctly.
Input/Textarea is not reading the background image and color properties (style.css line:273)
#contact_form input, #contact_form textarea, #contact_form select { background: url("../images/input-bg.gif") repeat-x scroll left center #2E190B; border: 1px solid #FF8A00; color: #FFFFFF; padding-bottom: 5px; padding-top: 6px; }
Radio options for the "Send me a copy", in IE has a white background color (style.css line:280)
#contact_form fieldset .checkbox input, #contact_form fieldset .radio input { background: none; border: none; display: block; float: left; padding: 0; }
Submit buttons, in IE these are white and no background image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
问题似乎是由为表单元素定义的
filter
属性引起的,特别是在.form input
和.form textarea
规则中。尝试删除这些过滤器定义。It seems the problems are caused by the
filter
property being defined for form elements, specifically in the.form input
and.form textarea
rules. Try removing those filter definitions.所有这些属性都已被覆盖,但在 IE 中,
filter
属性仍然处于活动状态background
属性和filter
属性在 IE 中可以一起使用,所以设置:All of these attributes has been overridden, but in IE,
filter
attribute is still in activebackground
attribute andfilter
attribute can be together in IE, so set:我看到您的网站使用 jQuery。
为什么不使用一个不错的插件来管理表单呢?
此处 ,其中一些已列出并链接。
I see that your site uses jQuery.
Why don't you use one of the nice plugins to manage forms ?
Here, some of them are listed and linked.