I'm facing an issue with my table on smaller screens where some columns need to be hidden. Here's the code snippet I'm using:
<table>
<tr>
<td>Normal 1</td>
<td class="d-lg-flex d-none">hidden 1</td>
<td class="d-lg-flex d-none" >hidden 1</td>
<td class="d-lg-flex d-none">hidden 1</td>
<td>Normal 2</td>
</tr>
</table>
However, on larger screens, the columns with 'd-lg-flex d-none' are appearing as rows instead of separate columns. I need a solution to display them correctly on large screens.
Any assistance would be greatly appreciated. Thanks!