Search code examples
inputhoverplaceholder

Hover an input element, which affects the placeholder


I have tried to change the placeholder color of the input element when you hover it.


Solution

  • add :hover then ::placeholder pseudoelement to change its color:

    input:hover::placeholder {
        color: red;
    }