Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save zzjtnb/a2b9de6dbad390b1d74b4a2f3b0dbdfe to your computer and use it in GitHub Desktop.

Select an option

Save zzjtnb/a2b9de6dbad390b1d74b4a2f3b0dbdfe to your computer and use it in GitHub Desktop.
input search更改默认删除按钮和placeholder样式
```css
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
height: 16px;
width: 16px;
background: url(https://yxs-web.oss-cn-beijing.aliyuncs.com/328e4d97f9d0d68ea04e872f68e508e3.png) no-repeat;
background-size: contain;
}
```
更改placeholder
```css
input::placeholder {
color: red;
font-size: 1.2em;
font-style: italic;
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment