修改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;
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);
}
posted @ 2020-09-14 14:12  笑人  阅读(1114)  评论(0编辑  收藏  举报