Search code examples
htmlcssstylesheetstyling

How do I change the backcolor of a textbox when user clicks into it with CSS


Question is in the subject.


Solution

  • input[type='text']:focus {  
        background-color: #0066FF;  
    }