7

「クロス」と「パスワード公開」記号を削除するために次のソリューションを試しましたが、IE 10 モードでのみ機能します。IE 10 のすべてのバージョン モード (9、8、および 7) から「Cross」と「password revel」の記号を削除したいと考えています。

<style>
    ::-ms-clear{display: none;}
    ::-ms-reveal{display: none;}
</style>

デモフォームのスクリーンショットを共有しています。 解決策を提案してください。

以下のスクリーンショットはIE7から取得したものです

4

1 に答える 1

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>
于 2013-06-28T18:37:43.697 に答える