Answers for "change outline color of radio button"

2

how to change color of a radio button

input[type='radio']:after {
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #d1d3d1;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

    input[type='radio']:checked:after {
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #ffa500;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }
Posted by: Guest on December-03-2020
0

change color radio button

input[type='radio']{
		accent-color: green;
}
Posted by: Guest on February-20-2022

Code answers related to "change outline color of radio button"

Browse Popular Code Answers by Language