Skip to content

Instantly share code, notes, and snippets.

@movii
Created June 23, 2017 15:32
Show Gist options
  • Save movii/c034efe85fb15686409fce06016a69e2 to your computer and use it in GitHub Desktop.
Save movii/c034efe85fb15686409fce06016a69e2 to your computer and use it in GitHub Desktop.
使用 CSS 伪类为 select 元素添加 placeholder: 1. 遇到的问题
<style>
::placeholder { /* Chrome/Opera/Safari */
color: pink;
}
</style>
<input type="text" placeholder="占位符" />
<textarea placeholder="占位符">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment