Answers for "how to style a radio button when checked"

CSS
-2

css change radio button style

.radiobutton{
	background-color: cyan;
  	border: none;
  	padding: 2px;
}

.radiobutton:hover{
	background-color: blue;
  	border: none;
  	padding: 10px;
}
Posted by: Guest on July-23-2021

Code answers related to "how to style a radio button when checked"

Browse Popular Code Answers by Language