Is it posible to make an input checkbox a Bootstrap glyphicon?
I want to make up the default checkboxes with a nice Bootstrap glyphicon.
For example: glyphicon
You can achieve that in a couple of methods:
Method 1
tag, two that represent the icons that you want need to be placed(or outside, per use scenario), when the input[type='checkbox'] is checked or uncheckedMethod 2
:before(or :after depending on your scenarion) on the tagcontent prop. of the :before class, that the icons that you want have, when the input[type='checkbox'] is checked or uncheckedCheck out the demo here and also, a couple of more through documentation on this matter: