JSFiddle - React, Tailwind, and code Playground
HTML
<div class="myContainer">
<input type="text" class="textBox" />
<input type="submit" value="ENTER" class="myButton"/>
</div>
CSS
.myContainer {
width:100%;
}
.myContainer input {
display: inline-block;
}
input.textBox {
width: 70%;
padding: 5px 5%;
}
input.myButton {
width: 10%;
padding: 5px 5%;
}