JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<form>
<input type="text">
<input type="submit">
</form>
</div>
CSS
div {
background: gold;
width: 120px;
}
form {
display: flex;
}
input[type='text'] {
}
input[type='submit'] {
}