Can JQuery UI Tabs be modified to fill the horizontal space and stack to the left?
In order to achieve this, could we consider using a markup like the one below:
<table width="100%">
<tr>
<td>
...content...
</td>
<td>
...content...
</td>
<td>
...content...
</td>
</tr>
</table>
In tables, cells expand to fit the available space by default. If tabs were designed as table cells, they would act fluidly.
Some questions to consider:
- Is it possible to achieve this behavior using DIVS instead of tables?
- Would it be feasible to implement this feature using Jquery UI Tabs?
Best regards, Serendipity