Using bootstrap 4, I'd like the ticks to appear green on checkboxes:
<div class="mycontainer">
<div class="check-item">
<input type="checkbox" value="Apple" class="checkmark">
Apple
</div>
<div class="check-item">
<input type="checkbox" value="Orange" class="checkmark">
Orange
</div>
</div>
Here is the CSS:
.mycontainer {
display: flex;
flex-wrap: wrap;
}
.checkmark {
height: 25px;
width: 25px;
background-color: green;
}
.check-item {
margin-right: 20px;
}
https://jsfiddle.net/Babrz/qbo7tce4/3/
Appreciate your help to fix this.