兼容IE的自定義input搜索框叉號樣式(使用圖片替換input原生叉號)
廣州vi設計公司 http://www.maiqicn.com 我的007辦公資源網 https://www.wode007.com
代碼
input::-webkit-search-cancel-button {
-webkit-appearance: none;
position: relative;
height: 15px;
width: 15px;
border-radius: 50%;
background: url("1.jpg") no-repeat center;
background-size: 100% 100%;
color:rgba(0,0,0,0);
}
input[type=search]::-ms-clear {
appearance: none;
position: relative;
height: 15px;
width: 15px;
border-radius: 50%;
background: url("1.jpg") no-repeat center;
background-size: 100% 100%;
color:rgba(0,0,0,0);
}