JSFiddle - React, Tailwind, and code Playground

by Vitaliy

HTML

<ul>
    <li><input type="text"></li>
    <li><input type="text"></li>
</ul>

CSS

html, body{
    overflow-x:hidden;
}
ul{
    width:300px;
    list-style:none;
}
li{
    float:left;
    margin-right:10px;
}
li input{
    width:130px;
}