JSFiddle - React, Tailwind, and code Playground
by mehulkar
HTML
<div class="wrapper">
<form>
<input type="radio"></input>
<label>I'm a radio button and I spill over my parent</label>
</form>
</div>
CSS
.wrapper {
width:300px;
margin:0 auto;
overflow:hidden;
background-color:red;
}
input[type="radio"] {
padding:0;
margin:0;
}