JSFiddle - React, Tailwind, and code Playground

HTML

<dl>
    <dt>Crab Claw</dt>
    <dd>$12,50</dd>
</dl>

CSS

dl {
    border-bottom: 1px dotted #000;
    width: 300px;
    font: bold 1em/1.2 Arial, sans-serif;
    color: #AF8D60;
}

dl:after {
    content: '';
    clear: both;
    display: table;
    height: 0;
}

dt, dd {
    position: relative;
    bottom: -5px;
    background: #fff;
}

dt {
    float: left;
    padding-right: 10px;
}

dd {
    padding-left: 10px;
    float: right;
}