JSFiddle - React, Tailwind, and code Playground

by Salustiano Silva

HTML

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

CSS

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

    background: #ddd;
}

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