JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<head>
<title>表格範例</title>
</head>
<body>
<table border="1">
<tr>
<td>表格(0,0)</td>
<td>表格(1,0)</td>
</tr>
<tr>
<td>表格(0,1)</td>
<td>表格(1,1)</td>
</tr>
<tr>
<td>表格(0,2)</td>
<td>表格(1,2)</td>
</tr>
</table>
</body>
</html>