JSFiddle - React, Tailwind, and code Playground

by Nikhil Mangal

HTML

<h2>Textbox with Default Settings</h2>
<input type="text" />
<h2>Textbox without border</h2>
<input type="text" class="textbox" />

CSS

.textbox:focus
{
	outline:none;
}