JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<div>
    <h2>2014</h2>
</div>

CSS

div {
    text-align:center;
    margin:0 20px;
}
div h2 {
    display:inline-block;
    position:relative;    
}
div h2:before {
    content:'';
    position:absolute;
    top:0;
    right:80px;
    width:1000%;
    height:2px;
    background:red;
}