input-search 삭제버튼 커스텀
for chrome
input[type=search] {padding-right: 입력값;}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
-webkit-appearance: none;
width: 입력값; height: 입력값; background: url(경로) center center no-repeat;
cursor: pointer;
}
or
input[type=search]::-webkit-search-cancel-button {
-webkit-appearance: none;
width: 입력값; height: 입력값; background: url(경로) center center no-repeat;
cursor: pointer;
}
point
display: none;
이 아닌-webkit-appearance: none;
으로 설정input[type=search]::-webkit-search-cancel-button {background-image: url();}
로 커스텀할 아이콘 이미지를 불러온다. width와 height값은 아이콘 크기로 설정input[type=search] {padding-right: 값;}
설정으로 버튼 위치 조절할 수 있음
Author And Source
이 문제에 관하여(input-search 삭제버튼 커스텀), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dkahsem27/input-search-삭제버튼-커스텀저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)