css radio button size
// How to change the size of the radio button using CSS
// add this code to HTML file, change height and width in style
<input type="radio" name="radio" value="value" style="height:50px; width:50px; vertical-align: middle;">
css radio button size
// How to change the size of the radio button using CSS
// add this code to HTML file, change height and width in style
<input type="radio" name="radio" value="value" style="height:50px; width:50px; vertical-align: middle;">
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;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us