JSFiddle - React, Tailwind, and code Playground
by rus333
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>cell width</title>
<style>
* {
margin: 0;
padding: 0;
}
table {
border: none;
border-collapse: collapse;
}
td {
border: 1px solid;
}
</style>
</head>
<body>
<table width=350>
<tr>
<td width=300>Cell1</td>
<td width=50>Cell2</td>
</tr>
</table>
</body>
</html>