Remove IE11#39;s quot;clear fieldquot; X button on Windows 8(去掉 IE11 的“清除字段;Windows 8 上的 X 按钮)
问题描述
按照 删除 IE10 的清除字段"中给出的建议;某些输入上的 X 按钮?
.someinput::-ms-clear {
display: none;
}
在 Windows 7 上使用 IE 11 效果很好,但在 Windows 8.1 上使用 IE 11 效果不佳
worked great with IE 11 on Windows 7 but not with IE 11 on Windows 8.1
我也试过了
.someinput::-ms-clear {
height: 0;
width: 0;
}
对于在 IE 11/Windows 8.1 上删除 X 有什么想法吗?谢谢
Any thoughts on removing the X on IE 11/Windows 8.1? Thanks
推荐答案
我遇到了同样的问题,大部分的 css 都没有帮助我删除清除按钮.我通过简单地将宽度和高度设置为 0(加上不显示)解决了这个问题
I had the same issue and the most of the css didn't help me to remove the clear button. I solutioned this by simply setting width and height to 0 (plus display none)
.someInputdisplay::-ms-clear {display: none; width:0; height:0;}
我希望这可能会有所帮助!
I hope this might be helpful!
这篇关于去掉 IE11 的“清除字段";Windows 8 上的 X 按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:去掉 IE11 的“清除字段";Windows 8 上的 X 按钮
- Flexslider 箭头未正确显示 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01