JSFiddle - React, Tailwind, and code Playground

by ttamminen

HTML

<table>
    <tr>
        <th><input type="checkbox"/></th>
        <th>Nimi</th>
    </tr>
    <tr>
        <td><input type="checkbox"/></td>
        <td>Tatu</td>
    </tr>
    <tr>
        <td><input type="checkbox"/></td>
        <td>Joku</td>
    </tr>    
</table>

CSS

table tr td:nth-of-type(2) {
  	position:relative;
    box-shadow:1px 1px 5px rgba(0, 0, 0, 0.3), 10px 0 2px rgba(0, 0, 0, 0.1) inset;    
}