JSFiddle - React, Tailwind, and code Playground

by hibinyru

HTML

<div class="container">
    <input class="content" id="Text1" type="text" />
</div>

CSS

.container {
    width: 300px;
    height: 30px;
    border: thin solid red;
    overflow:visible;
}
.content {
    width: 100%;
    box-sizing: border-box;
    margin-right:-20px;
    padding-right:-20px;
}