For radio buttons in Bootstrap 4, the color of the radio button is blue in Chrome and black in Edge.
Is there a way to change it to blue in Bootstrap?
For radio buttons in Bootstrap 4, the color of the radio button is blue in Chrome and black in Edge.
Is there a way to change it to blue in Bootstrap?
You can use an accent color in CSS:
input[type="radio"] {
accent-color: green;
}