JSFiddle - React, Tailwind, and code Playground

HTML

<footer>some footer text</footer>

CSS

footer 
{
border-top:1px dashed #ddd;
color:#999;
}
footer:before {
    content: "";
    background-color: black;
    height: 1px;
    display: block;
    top: -1px;
    position: relative;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}