JSFiddle - React, Tailwind, and code Playground
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;
}
<h2>Textbox with Default Settings</h2>
<input type="text" />
<h2>Textbox without border</h2>
<input type="text" class="textbox" />
.textbox:focus
{
outline:none;
}