ta33ik Posted February 2, 2021 Report Share Posted February 2, 2021 Hi, any way to change the border color of a form field, when it's on :focus ? Thanks, Quote Link to comment Share on other sites More sharing options...
0 cheonsa Posted February 19, 2021 Report Share Posted February 19, 2021 Hi @ta33ik, You can add this CSS Code to change the border color of a Text field when it's on focus: <style> input:focus { outline-color: red !important; } </style> If there is a Text area, add this inside the style tag: textarea:focus{ outline-color: red !important; } Then, this code if there are dropdowns: select:focus{ outline-color: red !important; } Hope this helps! Quote Link to comment Share on other sites More sharing options...
Question
ta33ik
Hi, any way to change the border color of a form field, when it's on :focus ?
Thanks,
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.