Menu Close

How to change input placeholder color?

default

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:



View Source Codeamend
Posted in Development, Tech, web development