HTML5 Search Input: No Background Image in Chrome?

前端 未结 4 773
情深已故
情深已故 2020-12-28 08:06

I have been pulling my hair out trying to get Chrome to style my search input with a background image. Firefox has no problem, but I fear it\'s because it treat

4条回答
  •  生来不讨喜
    2020-12-28 08:59

    Complete solution to remove all extra design caused by browser. This will change the search field to normal input field

    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;
    }
    input[type="search"]{
      -webkit-appearance: none;
      -webkit-box-sizing: content-box;
      outline:none;
    }
    

提交回复
热议问题