JSFiddle - React, Tailwind, and code Playground

HTML

<table><tr><td><div class="foo"></div></td></tr></table>
<div class="foo"></div>

CSS

div.foo {
    float: right;
}
table {
    float: left;
}
.foo {
    width: 200px;
    height: 200px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 5px;
    position: relative;
}

.foo:empty:before {
    position: absolute;
    background: #eee;
    width: 50px;
    height: 50px;
    content: 'None';
    border: 1px solid #999;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    text-align: center;
    display: block;
    line-height: 50px;
}