I have an input field and I have applied the following CSS to it:
input:active,
input:focus {
outline: 1px auto rgb(16, 16, 16) !important;
outline-offset:0px;
}
However, when I tested it using , the input field still had a blue outline:
I was hoping to see my input field with a black outline when focused.
input:active,
input:focus {
outline: 1px auto rgb(16, 16, 16) !important;
outline-offset:0px;
}
<input type="text">