Is it possible to modify an input field value using CSS upon user interaction?
For example:
<input type=text name=username>
<input type=password name=password>
When the user clicks on this field, I want the initial text to disappear so they can enter their own.
I've attempted the following:
input[value="Input desired username here"] {
styles...
}
Any suggestions or tips?