Answers for "checkbox html css"

3

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;
}
Posted by: Guest on November-18-2020
-1

css style a checkbox

/*this creates a circle checkbox with another smaller circle
inside when checked, it looks nice ...*/
input[type='checkbox'] {
    -webkit-appearance:none;
    display:inline-block;
    width:16px;
    height:16px;
    padding:0px;
    margin:0px;
    margin-right:5px;
    background:white;
    border-radius:20px;
    border:1px solid #ddd;
    border: 1px solid #dee2e6;                                                
    box-sizing:content-box;                                                   
    line-height:16px;                                                         
    vertical-align: sub;                                                      
    position:relative;
}                                                                             
input[type='checkbox']:checked {                                     
    border:1px solid  #55468c;                                                
}                                                                             
input[type='checkbox']:checked:after{                                
  content:'';                                                                 
  position: absolute;                                                         
  width: 12px;                                                                
  height: 12px;                                                               
  border-radius: 12px;                                                         
  background: #55468c;                                                        
  top:50%;                                                                    
  transform: translateY(-50%);                                                
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
Posted by: Guest on September-30-2021
4

how to make html checkboxes

<input type="checkbox" id="vehicle1" name="vehicle1" value="Bike">
<label for="vehicle1"> I have a bike</label><br>
Posted by: Guest on November-23-2020

Browse Popular Code Answers by Language