JSFiddle - React, Tailwind, and code Playground
HTML
<div style="width:150px">
<table><!-- how can I have implicit width = 200px-->
<tr>
<td style="width:100px;background:red">hello</td><td style="width:100px;background:green">world</td>
</tr>
</table>
</div>
<div style="width:200px">
<table>
<tr>
<td style="width:100px; background:red">hello</td>
<td style="width:100px; background:green">world</td>
</tr>
</table>
</div>