I have been attempting to include multiple table cells elements beneath each of my heading cells, but I am facing issues in getting it to work properly.
For better understanding, this is a screenshot:
https://i.sstatic.net/kg2XR.png
My goal is to have other names such as Steph, Emily, John, etc. listed below "Brandon" for each category, like Category 1.
Currently, I have used line breaks but the desired outcome, where each item is in a separate row, is not being achieved.
<table>
<tr>
<th>Category 1</th>
<th>Category 2</th>
</tr>
<tr>
<td>Emil<br>Brandon</td>
<td>Tobias</td>
</tr>
</table>