JSFiddle - React, Tailwind, and code Playground
HTML
<input type="checkbox" text="hola" />
<input type="checkbox"/>
<input type="checkbox"/>
<input type="checkbox"/>
CSS
.selected { padding: 2px; background-color: blue;
text-decoration-color: red}
JavaScript
$('input[type=checkbox]').click(function() {
$(this).unwrap().filter(":checked").wrap("<span class='selected'>");
});