JSFiddle - React, Tailwind, and code Playground

by karim79

HTML

<div class="imgs">

<div class="thumb">
    <label for="img1"><img class="img" src="http://s5.tinypic.com/30v0ncn_th.jpg"/></label>
<input type="checkbox" class="chk " checked="checked" id="img1" name="img1" value="0" />
</div>

<div class="thumb">
<img class="img" src="http://s5.tinypic.com/2youavb_th.jp" id="img2" />
    
<input type="checkbox" class="chk " checked="checked" id="img2" name="img2" value="0" />
</div>

</div>

CSS

.thumb{
    width:160px;
    float: left;
    margin-left: 5px;
    border: solid 1px #ccc; 
}
.img {

}

input.chk{
margin-left: 70px;



]