JSFiddle - React, Tailwind, and code Playground

by paska

HTML

<table cellpadding="0" cellspacing="0">
    <tr>
        <td width="100" id="theOne">
            <div>ASD</div>
        </td>
    </tr>
</table>

CSS

#theOne {
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid black;
}

div {
    width: 100px;
    background-color: blue;
}

JavaScript

alert($("td").outerWidth());