How to Change Palceholder color in html
If you want to change placeholder color of any text box then this listed below code is for you.
<input id="myinput" name="myinput" type="text" placeholder="Start your search here" />
<style>
::placeholder {
color:white;
opacity: 5;
}
:-ms-input-placeholder { color: white;}
::-ms-input-placeholder { color: white;}
</style>
<input id="myinput" name="myinput" type="text" placeholder="Start your search here" />
<style>
::placeholder {
color:white;
opacity: 5;
}
:-ms-input-placeholder { color: white;}
::-ms-input-placeholder { color: white;}
</style>