JSFiddle - React, Tailwind, and code Playground

by Salustiano Silva

HTML

<div id="wrapper">
    <div id="cell"> Doesn't work in Firefox <span></span>
    </div>
</div>

CSS

body {
    padding: 40px;
}
#wrapper {
    position: relative;
}
#cell {
    display: table-cell;
    line-height: 28px;
    padding: 0 20px;
    background: #ddd;
}

span {
    background: #444;
    width: 1px;
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 10px;
}