JSFiddle - React, Tailwind, and code Playground

by Minas Aslanyan

HTML

<div class="container">
  <div class="height"></div>
 <input type="radio" id="contactChoice1"
     name="contact" value="email">
    <label for="contactChoice1">Email</label>
<br>
    <input type="radio" id="contactChoice2"
     name="contact" value="phone">

    <label for="contactChoice2">Phone</label>
     <br>
    <input type="radio" id="contactChoice3"
     name="contact" value="mail">
    <label for="contactChoice3">Mail</label>
</div>

CSS

.container {
 overflow:auto; 
 height:195px;
}
.height {
  height:200px;
}