JSFiddle - React, Tailwind, and code Playground

by Lucas Krause

HTML

<div class=a>
    <div class=b></div>
</div>

CSS

.a {
    background:#eee;
    width:300px;
    height:100px;
}
.b {
    background:tomato;
    width:100px;
    height:100%;
    padding-left:10%;
    background-clip:content-box;
}