Vertical Line Positioning

More reading - https://css-tricks.com/fixing-tables-long-strings/

1 Like

Yes but doesn’t really apply to table-cells as they must always fit the table. Widths and heights in table cells are treated as minimums and depending on the layout algorithm (fixed or auto) behave in different ways.

If you want columns of equal width then use the fixed algorithm and use a width. If you want a best fit for content then use the auto algorithm. The table-layout:fixed is a quicker algorithm because it does it in one parse where the auto has to look through the table twice to find the widest content etc.

In the end its a matter of just trying both and see what best fits the data you have.

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.