Here is the template data file: https://github.com/Hoektronics/BotQueue/blob/master/views/bot/dashboard_list.ejs
I'm trying to make 8 of the 10 columns of a table to only take up exactly the minimum width that they need to, based on the text, respecting the padding and column headers.
In the example image, I want all but the 4th and 9th columns to take up the minimum width. Technically, there are 9 column headers, and the last one has a colspan of 2. The last header is a span3. I'd like the percentage column to take up the least width that is needed, and let the progress bar or the pass/view/fail buttons take up the rest.
Column 4 is set up to replace overflowed text with an ellipsis.
Example image:
There is a trick that involves setting some cells to a very small width, and then applying a
white-space: nowrap
property:Live demo
As you can also see in the above fiddle,
nowrap
forces the table cell to prevent any line-breaks, and thus align its width to the smallest possible.NOTE: If you have a
thead
, you want to apply thetd
's stylings toth
as well.UPDATE #1: Ellipsis (...)
To automatically collapse a longer column into ellipses, the
text-overflow: ellipsis
is what you are likely looking for:Live demo
This also requires
overflow
set tohidden
, as well as awidth
ormax-width
with a fixed value. Add thecell-collapse
class to cells whose width you would like to limit.UPDATE #2: Handling Bootstrap
Bootstrap's
table
class setswidth: 100%;
which will mess up this approach. You can fix that withtable { width: inherit !important; }
Live demo
NOTE: The tables in this approach already have full width because table cells already have
width: auto;
.Previous Javascript-base solution removed, since the pure CSS-based approach now works consistently across all modern browsers. The original code is still available at the linked JSfiddle, commented out.