Is there a way to display an outline around an input element when a user navigates sequentially (TAB button) and then hide the outline when the user clicks on the input element with the mouse? Has anyone successfully implemented this type of behavior before?
In my CSS file, I have set the following property on my :focus selector:
:focus {
outline: #00bfff solid 1px !important;
}
As of now, the outline only appears when the input element is focused.
Best Regards, Raimonds