I need to change the placeholder text of an input textbox via css.
Here is the html code:
<div class="col">
<input class="form-control" type="text" placeholder="" id="myID">
</div>
And here is the css one:
#myID::placeholder{content:"Type something";}
I can't write the placeholder directly inside the html code and not even with JS. Is there a way to solve this?

