Search
 
SCRIPT & CODE EXAMPLE
 

CSS

change the color of a checkbox css

input[type="checkbox"] {
  accent-color: red;
}
Comment

checkbox background color css

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Styling checkbox */
  width: 16px;
  height: 16px;
  background-color: green;
}

input[type="checkbox"]:checked {
  background-color: blue;
}

<input type="checkbox" />
Comment

change checkbox checked color css

<!DOCTYPE html>
<html>
<head>
	<style>
		.main {
			display: block;
			position: relative;
			padding-left: 45px;
			margin-bottom: 15px;
			cursor: pointer;
			font-size: 20px;
		}
		
		/* Hide the default checkbox */
		input[type=checkbox] {
			visibility: hidden;
		}
		
		/* Creating a custom checkbox
		based on demand */
		.geekmark {
			position: absolute;
			top: 0;
			left: 0;
			height: 25px;
			width: 25px;
			background-color: black;
		}
		
		/* Specify the background color to be
		shown when hovering over checkbox */
		.main:hover input ~ .geekmark {
			background-color: yellow;
		}
		
		/* Specify the background color to be
		shown when checkbox is active */
		.main input:active ~ .geekmark {
			background-color: red;
		}
		
		/* Specify the background color to be
		shown when checkbox is checked */
		.main input:checked ~ .geekmark {
			background-color: green;
		}
		
		/* Checkmark to be shown in checkbox */
		/* It is not be shown when not checked */
		.geekmark:after {
			content: "";
			position: absolute;
			display: none;
		}
		
		/* Display checkmark when checked */
		.main input:checked ~ .geekmark:after {
			display: block;
		}
		
		/* Styling the checkmark using webkit */
		/* Rotated the rectangle by 45 degree and
		showing only two border to make it look
		like a tickmark */
		.main .geekmark:after {
			left: 8px;
			bottom: 5px;
			width: 6px;
			height: 12px;
			border: solid white;
			border-width: 0 4px 4px 0;
			-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			transform: rotate(45deg);
		}
	</style>
</head>

<body>
	
	<h1 style="color:green;">
		Best Computer Science Platform
	</h1>
	
	<label class="main">CodeX
		<input type="checkbox">
		<span class="geekmark"></span>
	</label>
	
	<label class="main">GeeksforGeeks
		<input type="checkbox" checked="checked">
		<span class="geekmark"></span>
	</label>
	
	<label class="main">CodeY
		<input type="checkbox">
		<span class="geekmark"></span>
	</label>
</body>
</html>					
Comment

checkbox background color change css

<div class="chek-box">
  <input type="checkbox" />
  <label class="wpforms-field-label-inline">Agree privacy</label>
</div>

<style>
.chek-box li.choice-1.depth-1 {
    position: relative;
}
.chek-box label.wpforms-field-label-inline:after {
    content: '';
    width: 18px;
    height: 18px;
    background: transparent;
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 2px;
    z-index: -1;
    opacity: 1;
    border: 1px solid red;
}
.chek-box input[type="checkbox"] {
    opacity: 0;
}
.chek-box input[type="checkbox"]:checked ~ label.wpforms-field-label-inline:after {
  background: red;
}
.chek-box input[type="checkbox"]:checked ~ label.wpforms-field-label-inline:before {
  opacity: 1;
}
label.wpforms-field-label-inline:before {
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: '';
    z-index: 9999999;
    position: absolute;
    display: inline-block;
    left: 6px;
    top: 4px;
opacity: 0;
}
</style>


<!-- M.Sajjad Rogi -->
<!-- Web Designer & Developer -->
<!-- +92 302 2020 318 -->
<!-- msrogi6@gmailcom -->
Comment

PREVIOUS NEXT
Code Example
Css :: css perfect box shadow 
Css :: max z index 
Css :: import css in thymeleaf 
Css :: css make something always on top 
Css :: css visibility 
Css :: css if screen size less than 
Css :: change mat icon size 
Css :: css start animation on hover 
Css :: smooth transition in and out css 
Css :: css fixed bottom 
Css :: linear-gradient(top to bottom) 
Css :: bootstrap media queries 
Css :: box shadow css animation 
Css :: scss sass watch command line 
Css :: css important 
Css :: css make text transparent 
Css :: center grid 
Css :: fixed footer in bootstrap 
Css :: add glow to image css 
Css :: center absolute element css 
Css :: hover button scss 
Css :: jquery .css multiple 
Css :: imporatn css 
Css :: how to center the table horizontally css 
Css :: autofit grid css 
Css :: how to stop browser from swipe left to right history-navigation javascript 
Css :: hegith specific css in media query 
Css :: css nth child skip first 
Css :: jquery remove css class 
Css :: css grid full width row 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =