JSFiddle - React, Tailwind, and code Playground

by Vipin Patil

HTML

<span class="number">273.978</span>
<br>
<span class="number">About Us</span>
<br>
<span class="number">Inrastructure</span>

CSS

.number {
        font-family: monospace;
        font-size:50px;
    }
    .number:after {
         content: "";
        display: inline-block;
        height: 1em;
        width: 1.1em;
        position: relative;
        top: 0.25em;
        right: 1.05em;
        border-bottom:solid red 5px;
    }