JSFiddle - React, Tailwind, and code Playground

by ydelmas

HTML

<table>
    <tr>
        <td rowspan="2">A</td>
        <td colspan="2">B</td>
        <td rowspan="2">C</td>
    </tr>
    <tr>
        <td>b1</td>
        <td>b2</td>
    </tr>
    <tr>
        <td>w</td>
        <td>x</td>
        <td>y</td>
        <td>z</td>
    </tr>
    <tr>
        <td>w</td>
        <td>x</td>
        <td>y</td>
        <td>z</td>
    </tr>
</table>

CSS

td { border: 1px solid #000; }
table {
    border-spacing: 0px;
    border-collapse: collapse;
}