JSFiddle - React, Tailwind, and code Playground

by André Albson

HTML

<label class="big">
This is a box 1
<input name="radio-group1" type="radio" />
</label>

<br/>

<label class="big">
This is a box 2
<input name="radio-group1" type="radio" />
</label>

CSS

.big {
    display:block;
    width:100px;
    height:100px;
    background-color:red;
    cursor:pointer;
}

.hli {
    border:2px solid blue;   
}