Learn the details about How to change input placeholder color instantly right from your google search results with the Codeamend.
HTML
<input type="text" placeholder="Placeholder color..">
CSS
<style>
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: green;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: green;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: green;
}
</style>
Output
Change the placeholder Color:
Total Views: 1,065
Share