如何在IE 10的IE 9,8 + 7模式中删除交叉标志和密码显示标志?

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)

我正在分享演示表格的截图. 请建议解决方案.

下面的截图来自IE7

mrm*_*oje 1

尝试使用更具体的 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)