JSFiddle - React, Tailwind, and code Playground

by verashn

HTML

<div>
    <input type="text"/>
    <a></a>    
    <a></a>
    <a></a>
</div>

CSS

div {
    width: 100%;
    height: 100px;
    background-color: red;
}

input {
    display: inline-block;
}

a {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: white;
}