[Solved] Change back ground colour of a text box on mouse over [closed]


Pretty general and ambiguous question but if I understand you correctly try this

textarea:hover, input[type="text"]:hover {
background: #ffffff;
}

In case you mean on focus replace hover with focus and change #ffffff to the color you want

0

solved Change back ground colour of a text box on mouse over [closed]