JSFiddle - React, Tailwind, and code Playground

by ryanbrill

HTML

<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />

<table>
    <tr>
        <td>Test 1</td>
        <td>
            <div>
                <span></span>
            </div>
        </td>
    </tr>
</table>

CSS

table {
    margin-top: 450px;
}
td {
    position: relative; 
    /*display: block;*/
}
div {
    position: relative;
    width: 200px;
    height: 200px;
    background: #ccc;
}
span {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    background: #f00;
}