I was in the midst of developing my bootstrap application.
Every time I click on a radio button, there is a noticeable blue outline as shown here:
https://i.sstatic.net/Uzm7b.png
I attempted to address this issue using the following CSS code:
.form-check-input:checked[type=radio], .form-check-input:checked[type=radio]:hover, .form-check-input:checked[type=radio]:focus, .form-check-input:checked[type=radio]:active{
border: none !important;
outline: none !important;
box-shadow: none !important;
}
Despite my efforts, none of these solutions have worked so far. My HTML markup is quite simple:
<input class="form-check-input" name="gender" type="radio" value="male">
<label class="form-check-label">Male </label>
Does anyone have a suggestion for completely eliminating this bothersome blue outline upon selection?