JSFiddle - React, Tailwind, and code Playground

by chovy

HTML

<form>
    <input type="text" />
    <input type="submit" value="Submit" />
</form>

CSS

form { width: 100%; border: 1px solid black; padding: 5px; }
input[type=text] { border: 1px solid gray; }
input[type=submit] { border: 1px solid gray; }