Rav*_*hia 7 html css internet-explorer ie-compatibility-mode internet-explorer-10
我尝试使用以下解决方案来删除"交叉"和"密码显示"标志,但它仅适用于IE 10模式.我想从IE 10的每个版本模式(9,8和7)中删除"Cross"和"password revel"符号.
<style>
::-ms-clear{display: none;}
::-ms-reveal{display: none;}
</style>
Run Code Online (Sandbox Code Playgroud)


尝试使用更具体的 CSS 选择器
<style>
input[type=text]::-ms-clear{display: none;}
input[type=password]::-ms-reveal{display: none;}
.specific_input_class::-ms-clear{display: none;}
#specific_input_element::-ms-clear{display: none;}
</style>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5196 次 |
| 最近记录: |