How can I specify a td tag should span all columns (when the exact amount of columns in the table will be variable/difficult to determine when the html is being rendered)? w3schools mentiones you can use colspan="0", but it doesn't say exactly what browsers support that value (IE 6 is in our list to support).

Edit: It appears that setting colspan to a value greater than the theoretical amount of columns you may have will work, but it will not work if you have table-layout set to fixed. Are there any disadvantages to using an automatic layout with a large number for colspan? Is there a more correct way of doing this?

link|improve this question

w3schools now mentions that none of the major browsers support colspan="0", go figure. – yoyo Nov 2 '11 at 22:23
@yoyo, I just read that, so it questions why such a feature exists if none of the major browsers support it. Plus, it also states that colspan="0" would only span it to the end of the colgroup, not necessarily a row. – Doomsknight Feb 1 at 16:16
feedback

9 Answers

up vote 19 down vote accepted

I have IE 7.0, Firefox 3.0 and Chrome 1.0

The colspan="0" attribute in a TD is NOT spanning across all TDs in any of the above browsers.

Maybe not recommended as proper markup practice, but if you give a higher colspan value than the total possible no. of columns in other rows, then the TD would span all the columns.

This does NOT work when the table-layout CSS property is set to fixed.

Once again, this is not the perfect solution but seems to work in the above mentioned 3 browser versions when the table-layout CSS property is automatic. Hope this helps.

link|improve this answer
What about when the table-layout is set to fixed? I didn't notice this property and fought with this bug because the td with a large colspan will cause the row to be pushed out of the grid past all other rows. – Bob Dec 29 '08 at 21:51
1  
The higher colspan value seems to be a bad idea if you want to set table-layout as fixed. Its giving inconsistent result across the mentioned 3 browsers. I'll update my post to reflect this. – Nahom Tijnam Dec 29 '08 at 22:17
If you specify a strict doctype at the very start of the html Firefox 3 render the colspan as required by html 4.01 specs. – Eineki Dec 29 '08 at 23:28
feedback

Just use this:

colspan="100%"

It works on Firefox 3.6, IE 7 and Opera 11! (and I guess on others, I couldn't try)

Cluxter

link|improve this answer
4  
Tested [additionally] in IE6 - IE8, Chrome [on PC and Mac], Firefox 4.0 [PC and Mac], Safari 5 [PC and Mac] – Raine May 6 '11 at 17:55
5  
How is this still so obscure? This should be shouted on every street corner!!! I've been struggling with this damned colspan issue at different times for quite a while now – Raine May 6 '11 at 17:56
10  
On chrome and firefox, colspan="3%" is handled just the same as colspan="3". – zpmorgan May 21 '11 at 19:49
16  
@zpmorgan and @Sprog, you are right! colspan="100%" means exactly colspan="100". – NemoStein Sep 13 '11 at 14:35
5  
Lol, I was very happy to finally see a consistent cross-browser solution to this problem, only to find through the comments that this is indeed a deceptive not-working-as-expected one :( I think it doesn't deserve more upvotes than the accepted answer =/ – Francisco Dec 28 '11 at 15:07
show 4 more comments
feedback

For IE 6, you'll want to equal colspan to the number of columns in your table. If you have 5 columns, then you'll want: colspan="5".

The reason is that IE handles colspans differently, it uses the HTML 3.2 specification:

IE implements the HTML 3.2 definition, it sets colspan=0 as colspan=1.

The bug is well documented.

link|improve this answer
The amount of columns may be variable, I will update my question to include that remark. – Bob Dec 29 '08 at 21:43
feedback

If you want to make a 'title' cell that spans all columns, as header for your table, you may want to use the caption tag (http://www.w3schools.com/tags/tag%5Fcaption.asp) This element is meant for this purpose. It behaves like a div, but doesn't span the entire width of the parent of the table (like a div would do in the same position (don't try this at home!)), instead, it spans the width of the table. There are some cross-browser issues with borders and such (was acceptable for me). Anyways, you can make it look as a cell that spans all columns. Within, you can make rows by adding div-elements. I'm not sure if you can insert it in between tr-elements, but that would be a hack I guess (so not recommended). Another option would be messing around with floating divs, but that is yuck!

do:

<table> <caption style="gimme some style!"> title of my table </caption> <thead> or <tbody> ...

don't:

<div> <div style="float: left; + gimme some style!"> I must be floating left </div> <table> <thead> or <tbody> ... </table> <div style="clear: both"></div> yuck!

link|improve this answer
feedback

Maybe I'm a straight thinker but I'm a bit puzzled, don't you know the column number of your table?

By the way IE6 doesn't honor the colspan="0", with or without a colgroup defined. I tried also to use thead and th to generate the groups of columns but the browser doesn't recognlise the form colspan="0".

I've tried with Firefox 3.0 on windows and linux and it works only with a strict doctype.

You can check a test on several bowser at

http://browsershots.org/http://hsivonen.iki.fi/test/wa10/tables/colspan-0.html

I found the test page here http://hsivonen.iki.fi/test/wa10/tables/colspan-0.html

Edit: Please copy and paste the link, the formatting won't accept the double protocol parts in the link (or I am not so smart to correctly format it).

link|improve this answer
I agree about the first part: surely you could figure out how many cells you're going to have in the row? How else would you generate it? – nickf Sep 24 '09 at 11:11
3  
Not necessarily, I have an app with an AJAX dynamically generated table and the number of columns can change from callback to callback. Also, when developing you may "know" the number of columns, but this may change and you just know you will miss one of these – Mad Halfling May 5 '10 at 11:37
2  
Plus if you add columns later you might forget to change the colspan, better to have that is always max. – Adam Sep 22 '10 at 21:20
feedback

try using "colSpan" instead of "colspan". IE likes the camelBack version...

link|improve this answer
2  
only when using IE and setting via JavaScript and .setAttribute('colSpan', int); Note this was fixed in IE8 (in stds mode only) – scunliffe Mar 22 '10 at 16:20
+1 - I didn't know this and it was a huge help! I didn't think colSpan even worked in IE6. – mwilcox Nov 11 '10 at 17:53
feedback

another working but ugly solution : colspan="100", where 100 is a value larger than total columns you need to colspan.

according to W3C, the colspan="0" option valids only with COLGROUP tag.

link|improve this answer
This doesn't work in IE8 – Dan Finch Mar 2 '10 at 18:56
colspan="100" (e.g. beyond limit) can cause very strange table rendering in some cases (I'll try to hunt down some test cases and post the URLs) – scunliffe Mar 22 '10 at 16:19
feedback

You can determine the number of columns in your table with something like this:

var firstRow = tableBody.getElementsByTagName('tr')[0];
var numcols = firstRow.getElementsByTagName('td').length;

And now use this column count as your column span. This assumes you've got a reference to the body element for the table, but that should be straightforward.

link|improve this answer
feedback

This attribute specifies the number of rows spanned by the current cell. The default value of this attribute is one ("1"). The value zero ("0") means that the cell spans all rows from the current row to the last row of the table section (THEAD, TBODY, or TFOOT) in which the cell is defined.

So basicly to be w3 compatible IE6 should do it... but it wont!

I would try to solve it with css width(using percentages)

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.