Is it possible to change the placeholder text of an input textbox using only CSS?
Here's the HTML code snippet:
<div class="col">
<input class="form-control" type="text" placeholder="" id="myID">
</div>
And this is the corresponding CSS code:
#myID::placeholder{content:"Type something";}
Without being able to add the placeholder directly in the HTML or using JavaScript, what other solution could be implemented?