Styling the input search field: remove the rest button

by Julien Roche

HTML

<input type="search" autocomplete="off" tabindex="-1" aria-expanded="true" aria-label="Select box" placeholder="Select Attribute" />

CSS

input {
  width: 200px;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type="search"]::-ms-clear {
    display: none;
}