style a checkbox code example
Example 1: custom checkbox with image css
#trigger {
display: none;
}
.checker {
background-image: url(assets/checkboxes.png);
background-position: left center;
background-size: auto 100%;
width: 40px;
height: 40px;
background-repeat: no-repeat;
}
#trigger:checked + .checker {
background-position: right center;
}
Example 2: checkbox input in css
//all checkbox
input[type="checkbox"]{
box-shadow: 0 0 0 3px hotpink;
}
// all checked checkbox
input[type="checkbox"]:checked {
box-shadow: 0 0 0 3px hotpink;
}
Example 3: radio button css design for registration page
<!DOCTYPE html>
<html>
<head>
<style>
input[type = checkbox]{
-webkit-appearance: none;
background-color: #fafafa;
border: 1px solid #cacece;
box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
padding: 9px;
border-radius: 3px;
display: inline-block;
position: relative;
}
input[type = checkbox]:checked {
background-color: #e9ecee;
border: 1px solid #adb8c0;
box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
color: #99a1a7;
}
</style>
</head>
<body>
<form>
<input type="checkbox" name="gender" value="male" checked> Male<br>
<input type="checkbox" name="gender" value="female"> Female<br>
<input type="checkbox" name="gender" value="other"> Other
</form>
</body>
</html>
Example 4: checkbox style css
<div>
<label>Checkbox Small</label>
<input type="checkbox" id="checkbox-1-1" class="regular-checkbox" />
<nput type="checkbox" id="checkbox-1-2" class="regular-checkbox" />
<input type="checkbox" id="checkbox-1-3" class="regular-checkbox" />
<input type="checkbox" id="checkbox-1-4" class="regular-checkbox" />
</div>
<div>
<label>Checkbox Big</label>
<input type="checkbox" id="checkbox-2-1" class="regular-checkbox big-checkbox" />
<input type="checkbox" id="checkbox-2-2" class="regular-checkbox big-checkbox" />
<input type="checkbox" id="checkbox-2-3" class="regular-checkbox big-checkbox" />
<input type="checkbox" id="checkbox-2-4" class="regular-checkbox big-checkbox" />
</div>
<div>
<label>Radio Small</label>
<div class="button-holder">
<input type="radio" id="radio-1-1" name="radio-1-set" class="regular-radio" checked />
<input type="radio" id="radio-1-2" name="radio-1-set" class="regular-radio" />
<input type="radio" id="radio-1-3" name="radio-1-set" class="regular-radio" />
<input type="radio" id="radio-1-4" name="radio-1-set" class="regular-radio" />
</div>
</div>
<div>
<label class="radio-1">Radio Big</label>
<div class="button-holder">
<input type="radio" id="radio-2-1" name="radio-2-set" class="regular-radio big-radio" />
<input type="radio" id="radio-2-2" name="radio-2-set" class="regular-radio big-radio" />
<input type="radio" id="radio-2-3" name="radio-2-set" class="regular-radio big-radio" checked />
<input type="radio" id="radio-2-4" name="radio-2-set" class="regular-radio big-radio" />
<input type="radio" id="radio-2-5" name="radio-2-set" class="regular-radio big-radio" />
</div>
</div>