Created
June 23, 2017 15:32
-
-
Save movii/c034efe85fb15686409fce06016a69e2 to your computer and use it in GitHub Desktop.
使用 CSS 伪类为 select 元素添加 placeholder: 1. 遇到的问题
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
<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