Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can a table look like this be made?

+---------------+
|   |   |   |   |
+---------------+
|     |   |     |
+---------------+
|   |   |   |   |
+---------------+

If I do

<table>
    <tr>
        <td>1</td>
        <td>2</td>
        <td>3</td>
        <td>4</td>
    </tr>
    <tr><td>
        <table>
            <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
            </tr>
        </table>
        </td></tr>
    <tr>
        <td>1</td>
        <td>2</td>
        <td>3</td>
        <td>4</td>
    </tr>
</table>

then abc is inserted in just one <td>.

This jdfiddle shows the problem

http://jsfiddle.net/littlesandra88/EskrV/

How is such a table made, if it is possible?

share|improve this question

4 Answers

up vote 8 down vote accepted

You could do

<table>
    <tr>
        <td colspan=3>1</td>
        <td colspan=3>2</td>
        <td colspan=3>3</td>
        <td colspan=3>4</td>
    </tr>
    <tr>
        <td colspan=4>a</td>
        <td colspan=4>b</td>
        <td colspan=4>c</td>
    <tr>
        <td colspan=3>1</td>
        <td colspan=3>2</td>
        <td colspan=3>3</td>
        <td colspan=3>4</td>
    </tr>
</table>
share|improve this answer
Interesting alternative way to think about it. – Wiseguy Jun 24 '11 at 14:47
Should I style it in some way? jsfiddle.net/littlesandra88/EskrV/21 The current two solution look different in output right now. – Sandra Schlichting Jun 24 '11 at 14:48
I think before you do that you should look at what it looks like with longer input, like here: jsfiddle.net/a8MdF – murgatroid99 Jun 24 '11 at 14:54

Add a colspan to the <td> with the 3 column table.

Updated fiddle: http://jsfiddle.net/EskrV/18/

<table>
    <tr>
        <td>1</td>
        <td>2</td>
        <td>3</td>
        <td>4</td>
    </tr>
    <tr><td colspan="4">
        <table>
            <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
            </tr>
        </table>
        </td></tr>
    <tr>
        <td>1</td>
        <td>2</td>
        <td>3</td>
        <td>4</td>
    </tr>
</table>
share|improve this answer
1  
may need to also set the nested table width to 100% – mdmullinax Jun 24 '11 at 14:43
That will probably be the case, but that should be handled via CSS. – Michael Irigoyen Jun 24 '11 at 14:43
1  
No, colspan is an HTML attribute. – Michael Irigoyen Jun 24 '11 at 14:47
1  
Colspan is an HTML property of the table tag, CSS doesn't support it. Keep it in the HTML. – Kyle Sevenoaks Jun 24 '11 at 14:47
1  
text-align:center; on the TDs finish the job. – Jose Faeti Jun 24 '11 at 14:48
show 1 more comment

Of course you can: http://jsfiddle.net/XqKRR/ (without nested tables) However I've got that strage feeling that you're trying to use tables for something that is not a tabular data, am I right? If so, maybe a CSS and display: table[-row|-cell] will be a better soultion?

share|improve this answer
It actually is for tabular data =) But display: table[-row|-cell] sounds mighty interesting. – Sandra Schlichting Jun 24 '11 at 14:51
2  
If it is for tabular data then stay with <table> elemnet. CSS display property is useful when you need table-like behaviour for non-tabular structure. – Crozin Jun 24 '11 at 15:07

You could use nested <div>s then use css to set the width of each div.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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