JSFiddle - React, Tailwind, and code Playground

by Sergei Sokolov

HTML

<table cellspacing='10'>
        <tr>
           <td>Title 1</td>
           <td>Link 1</td>
        </tr>
    </table><br />
    <table cellspacing='10'>
        <tr>
           <td>Title 2</td>
           <td>Link 2</td>
        </tr>
    </table><br />
    <table cellspacing='10'>
        <tr>
           <td>Title 3</td>
           <td>Link 3</td>
        </tr>
    </table><br />

JavaScript

$('td').css({
'height' : 20,
'width' : 100,
'background-color' : '#69F'
});

$('table').css({
'position' : 'relative',
'left' : '20px',
'top' : 0,
'bottom' : 0,
'right' : 0,
'margin-top' : 10
});