JSFiddle - React, Tailwind, and code Playground

by danield770

HTML

<div id="container">
    <form>
        <input type="search">
        <span class="submit"></span>
    </form>
</div>

CSS

#container {
    width: 300px;
    border: 1px solid black;
}
form
{
    display:table;
    width: 100%;
}
.submit {
    display:table-cell;
    width: 40px;
    height: 30px;
    background-color: red;
}
input
{
    width: 100%;
    display:table-cell;    
}