Last active
August 10, 2020 12:14
-
-
Save zzjtnb/a2b9de6dbad390b1d74b4a2f3b0dbdfe to your computer and use it in GitHub Desktop.
input search更改默认删除按钮和placeholder样式
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```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; | |
| } | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```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; | |
| } | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment