Horje
radio button color css Code Example
radio button color css
<style>

	input[type="radio"] {
				accent-color: #57a;
				width: 20px;
			}

</style>
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;
    }




Css

Related
min and max width media query Code Example min and max width media query Code Example
css div overlay div Code Example css div overlay div Code Example
autofit grid css Code Example autofit grid css Code Example
text in circle css Code Example text in circle css Code Example
css how to prevent horizontal scrolling Code Example css how to prevent horizontal scrolling Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12