JSFiddle - React, Tailwind, and code Playground
by David Kyle
HTML
<form>
<h1>
User Info
</h1>
<label for="name">Name</label>
<input type="text" name="name" id="name"/ ?>
<fieldset>
<legend>
Contact Info
</legend>
<label for="email">Email</label>
<input type="text" name="email" id="email" />
</fieldset>
</form>
CSS
fieldset {
border-radius: 12px;
padding: 30px;
}