JSFiddle - React, Tailwind, and code Playground

by luckylooke

HTML

<div class="outer">
    Lorem ipsum dolor sit amet
    <div class="inner">&nbsp;</div>
</div>

CSS

.outer {
    background-color: #efefef;
    margin: 20px;
    padding: 10px 10px 0px 10px;
}

.inner {
    width: 80%;
    height: 1px;
    margin: 0px auto;
    border-bottom: 1px solid #969696;
}