JSFiddle - React, Tailwind, and code Playground

HTML

<table cellspacing="25">
    <tr>
        <td><input type="text" placeholder="lalala"></td>
    </tr>
</table>

CSS

*{  }
table {
    background-color: red;
    width: 300px;
    
}
table input {
    width: 90%;
    padding-left: 10%;
}