I am working on designing a navigation system for my website using a table inside a flexbox. I want to ensure that the table columns have equal width and can scale dynamically. Additionally, I aim to wrap the text in the data cells without changing the cell width.
min-width: max-content;
<nav>
<div class="navbar">
<table>
<tr>
<td><a>Home</a></td>
<td><a>Family</a></td>
<td><a>Cape Town</a></td>
<td><a>Swim</a></td>
</tr>
</table>
</div>
</nav>