Infinity Table Test

by parkji

HTML

<table>
    <tbody>
        <tr>
            <td>
                <div class="wrapper">
                    <span class="testing">Before</span>
                    Testing
                </div>
            </td>
            <td>Some other thing</td>
        </tr>
    </tbody>
</table>

CSS

td {
    border: 1px solid #000;
    padding: 10px;
}
body {
    margin-left: 200px;
}
.wrapper {
    position: relative;
}
.testing {
    background: #f00;
    position: absolute;
    left: -54px;
}