JSFiddle - React, Tailwind, and code Playground
by Ashok Gupta
HTML
<table>
<tr>
<th >id</th>
<th >Address</th>
</tr>
<tr>
<td>1984</td>
<td>Fieldstone Drive North Miami Beach, FL 33160</td>
</tr>
<tr>
<td>34</td>
<td>Grove Street Macon, GA 31204</td>
</tr>
<tr>
<td>123218736218736</td>
<td>Fieldstone Drive North Miami Beach, FL 33160</td>
</tr>
</table>
CSS
table, td, th {
border: 1px solid black;
}
table {
width: 300px;
}
table tr>th:first-of-type,table tr>td:first-of-type{
min-width: 40px;
max-width:80px;
word-break: break-all;
}