input框在瀏覽器上顯示一個叉,去掉方法


/* 清除IE10及以上版本input的叉叉(X)和密碼輸入框的眼睛圖標 */
input::-ms-clear {
display: none;
}
input::-ms-reveal {
display: none;
}
/*清除谷歌瀏覽器下的 search 叉號 */
input[type=search]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
/*清除IE下的 search 叉號 */
input[type=search]::-ms-clear {
display: none;
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM