移除输入框为search类型时的清除图标
Posted on: 2024年2月5日 at 08:44
参考 How to Remove “X” icon from search input field or input type search。
如上图所示,当 input
类型为 search
时,聚焦后,浏览器会在 input
末尾显示一个清除的图标。可添加下面的 css
,可隐藏该图标。
/* clears the ‘X’ from Internet Explorer */
input[type='search']::-ms-clear {
display: none;
width: 0;
height: 0;
}
input[type='search']::-ms-reveal {
display: none;
width: 0;
height: 0;
}
/* clears the ‘X’ from Chrome */
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
display: none;
}
作者: wtto
文章标题: 移除输入框为search类型时的清除图标
发表时间: 2024年2月5日
最后更新时间: 2024年2月5日
文章链接: https://wtto00.github.io/posts/how-to-remove-x-icon-from-search-input-field-or-input-type-search/
版权说明:
CC BY-NC-ND 4.0 DEED