1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > html5 input搜索框样式修改 修改input搜索框默认叉号的样式为自定义图片

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

时间:2024-01-11 08:34:02

相关推荐

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

兼容IE的自定义input搜索框叉号样式(使用图片替换input原生叉号)

代码

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);

}

链接: /article/detial/8716

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。