Add strikethrough to checked checkbox - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input checkbox

Description

Add strikethrough to checked checkbox

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
input[type=checkbox]:checked + label.strikethrough {
   text-decoration:line-through;<!--from  w w  w. j ava 2 s.c o  m-->
}
</style> 
 </head> 
 <body> 
  <div class="form-group "> 
   <label for="inputName" class="col-md-1 control-label">select</label> 
   <div class="col-md-5"> 
    <div class="checkbox"> 
     <input type="checkbox" name="packersOff" value="1"> 
     <label class="strikethrough">test</label> 
    </div> 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials