I want a table:
- to remain in view without scrolling, if the length of the cells would make it too wide to display (the texts can be variable) .. so that is basic table/cell sizing behavior
- that does NOT wrap cell texts, but uses overflow instead (double lines make rows unequal in height and hard to read/scan)
- to keep cells that have narrow content (icon, date, etc) not to take up too much space, but need to take up just what they need (again: basic table behavior)
The problem:
The combination of 100% width table and table-layout:fixed makes each cell's width equal(!), which is not needed, some cells now take up useless white-space.
I'd not like to go into selectively having to set widths of cells that should be less wide for example.