JSFiddle - React, Tailwind, and code Playground

HTML

<input type="checkbox" class="not-working" src="http://placekitten.com/g/200/200" />

<input type="checkbox" class="working" />

CSS

input {
    margin-right:20px;
}

input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance: none;
}

input.working {
    content:'';
}

input.working:after {
    background:url(http://placekitten.com/200/200);
    height:200px;
    width:200px;
    display:block;
    content: 'pseudo element on img';
    color:#f00;
    font: bold 2em sans-serif; 
}

JavaScript

/**
 2012 by Tim Pietrusky
 timpietrusky.com    
 */