This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Border color when focused

#40118
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

I assume you want to change the input border when it is focused via custom CSS?

Well, it depends on the layout, and you may also need javascript for that – but for some cases this should work:

input.orig:focus {
    box-shadow: 0 0 0 2px inset red !important;
}