修改input搜索框默认叉号的样式为自定义图片

兼容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;
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;
15px;
border-radius: 50%;
background: url("1.jpg") no-repeat center;
background-size: 100% 100%;
color:rgba(0,0,0,0);
}
原文地址:https://www.cnblogs.com/xiaonian8/p/13666386.html