I have a table with many columns. The table is wider than the page, and so it scrolls. The default behaviour of tables seems to be to make the width of each column as small as possible, and allow text to spill over onto a new line.

I'd like instead for my table cells to grow horizontally with their contents, and never to spill over onto a second line. Is this possible using CSS? If not, does anyone have any pointers for how I might start to do this using Javascript (jQuery if poss)?

link|improve this question

74% accept rate
feedback

3 Answers

up vote 4 down vote accepted

You can use:

td {
  white-space: nowrap;
}
link|improve this answer
Fantastic, thanks. – Will Apr 21 '11 at 13:00
feedback

I think this might be what you want. http://geekswithblogs.net/TimH/archive/2006/04/16/75318.aspx

Using the

 white-space: nowrap;

will cause the cell to take up as much space as it needs.

link|improve this answer
Nice and clean ;-) – Aklopper Apr 21 '11 at 12:20
feedback

You can set the table width to 100% or *.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.