JSFiddle - React, Tailwind, and code Playground

by David Thomas

HTML

<input type="text" id="outlined" placeholder="This has an outline" />
<input type="text" id="nooutline" placeholder="This has no outline" />

CSS

input {
    display: block;
    margin: 1em;
}

#nooutline {
    outline: none;
}