JSFiddle - React, Tailwind, and code Playground

by Beardy

HTML

<div class="block">
    <label class="label">twitter.com/@</label>
    <input class="input"/>
</div>

CSS

body { 
    font-family: arial;
}
.block {
    width: 240px;
}
.label {
    position: absolute;
    top: 23px;
    left: 20px;
    font-size: 13px;
    font-style: italic;
}
.input {
    font-size: 13px;
    padding: 10px 10px 10px 92px;
    width: 100%;
    line-height: 22px;
}