Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I´m trying to simulate a table using only CSS and DIV. The problem is that nothing that I do can perfectly simulate a table layout behavior.

Below is the table layout that I want and immediately below this one, what I could achieve with CSS/DIV:

Layout with Table/CSS and Table/CSS

Html/CSS

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <title>Teste</title>
    <style type="text/css">
        table{
            table-layout:fixed;
            width: 333px;
            border-width: 1px;
            border-spacing: 2px;
            border-style: solid;
            border-color: black;
            border-collapse: collapse;
        }

        table th, table td
        {
            border-width: 1px;
            padding: 1px;
            border-style: solid;
            border-color: black;
            border-collapse: collapse;
        }

        table th.column1, table td.column1{
            width:60px;
            background-color:#CCD9FF;
        }

        table th.column2, table td.column2{
            width:100px;
            background-color:#ECFFE5;
        }

        table th.column3, table td.column3{
            width:60px;
            background-color:#FFEBE5;
        }

        table th.column4, table td.column4{
            width:100px;
            background-color: #FFFFCC;
        }

        div#tablecontainer
        {
            width: 328px;
        }

        div.tablecontainerrow
        {
            clear:both;
        }

        div#tablecontainer div div.column1
        {
            width: 60px;
            float:left;
            border: 1px solid black;
            background-color:#CCD9FF;            
        }

        div#tablecontainer div div.column2
        {
            width: 100px;
            float:left;
            border: 1px solid black;
            background-color:#ECFFE5;            
        }

        div#tablecontainer div div.column3
        {
            width: 60px;
            float:left;
            border: 1px solid black;
            background-color:#FFEBE5;            
        }

        div#tablecontainer div div.column4
        {
            width: 100px;
            float:left;
            border: 1px solid black;
            background-color:#FFFFCC;            
        }


    </style>
</head>
<body>
    <h1>CSS and TABLE</h1>
    <table>
        <tr>
            <th class="column1">Header 1</th>
            <th class="column2">Header 2</th>
            <th class="column3">Header 3</th>
            <th class="column4">Header 4</th>
        </tr>
        <tr>
            <td class="column1">line 1 column 1</td>
            <td class="column2">line 1 column 2</td>
            <td class="column3">line 1 column 3</td>
            <td class="column4">line 2 column 4</td>
        </tr>
        <tr>
            <td class="column1">line 2 column 1</td>
            <td class="column2">line 2 column 2</td>
            <td class="column3">line 2 column 3</td>
            <td class="column4">line 2 column 4</td>
        </tr>
        <tr>
            <td class="column1">line 3 column 1</td>
            <td class="column2">line 3 column 2</td>
            <td class="column3">line 3 column 3 (more content)</td>
            <td class="column4">line 3 column 4</td>
        </tr>
    </table>
    <h1>CSS and DIV</h1>
    <div id="tablecontainer">
        <div class="tablecontainerrow">
            <div class="column1">Header 1</div>
            <div class="column2">Header 2</div>
            <div class="column3">Header 3</div>
            <div class="column4">Header 4</div>
            <div class="clear" />
        </div>
        <div class="tablecontainerrow">
            <div class="column1">line 1 column 1</div>
            <div class="column2">line 1 column 2</div>
            <div class="column3">line 1 column 3</div>
            <div class="column4">line 1 column 4</div>
        </div>
        <div class="tablecontainerrow">
            <div class="column1">line 2 column 1</div>
            <div class="column2">line 2 column 2</div>
            <div class="column3">line 2 column 3</div>
            <div class="column4">line 2 column 4</div>
        </div>
        <div class="tablecontainerrow">
            <div class="column1">line 3 column 1</div>
            <div class="column2">line 3 column 2</div>
            <div class="column3">line 3 column 3 (more content)</div>
            <div class="column4">line 3 column 4</div>
        </div>
    </div>
</body>
</html>

What might I modify to allow the CSS/DIV layout resembles the CSS/Table?

Some complementary information

  • Think in this as an exercise (a challenge). So please do not provide me answers saying the use of a table is a better solution for this situation.
  • In fact I´m wondering a solution that can change completely the tabular layout of data to another one simply changing the CSS. In this case, the use of <table> is out of question.
  • I want compatibility with IE 7+, FF3+, Chrome 4+.

Thanks!

share|improve this question
9  
Is what you're trying to display a table? If so, use a table. – Michael Mior Jun 9 '11 at 20:47
3  
why? semantically using a table for tabular data is considered a best practice. – matchew Jun 9 '11 at 20:48
Agreeing with the posters above, a table makes sense if you are displaying a table. – Jeremy B. Jun 9 '11 at 20:49
2  
Just use a table. But for the question: check for display: table display: table-row and so on... – BrunoLM Jun 9 '11 at 20:50
1  
@BrunoLM, @Michael, @matchew, @Jeremy, @thirtydot, To explain why to use CSS instead of a table, see the complementary information that I have added in my question. – rperson Jun 9 '11 at 23:28
show 6 more comments

6 Answers

up vote 11 down vote accepted

Again, you should use a table.

But if this is just an exercise in CSS, for kicks...

  • Ditch the <div class="clear" />.
  • Ditch the background colors and use faux-columns instead.
  • Don't put borders around the individual cells; instead put them around the rows.
  • Give the rows an overflow:hidden

Like so: http://jsbin.com/afuto5

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <title>Teste</title>
    <style type="text/css">
        table{
            table-layout:fixed;
            width: 333px;
            border-width: 1px;
            border-spacing: 2px;
            border-style: solid;
            border-color: black;
            border-collapse: collapse;
        }

        table th, table td
        {
            border-width: 1px;
            padding: 1px;
            border-style: solid;
            border-color: black;
            border-collapse: collapse;
        }

        table th.column1, table td.column1{
            width:60px;
            background-color:#CCD9FF;
        }

        table th.column2, table td.column2{
            width:100px;
            background-color:#ECFFE5;
        }

        table th.column3, table td.column3{
            width:60px;
            background-color:#FFEBE5;
        }

        table th.column4, table td.column4{
            width:100px;
            background-color: #FFFFCC;
        }

        div#tablecontainer
        {
            width:335px;
            border-top:1px solid black;
            background:url(http://i.stack.imgur.com/ZsO5U.png) TOP LEFT REPEAT-Y;
        }

        div.tablecontainerrow
        {
            clear:both;
            overflow:hidden;
            border:1px solid black;
            border-top:none;
        }

        div#tablecontainer div div.column1
        {
            width: 62px;
            float:left;
        }

        div#tablecontainer div div.column2
        {
            width: 104px;
            float:left;
        }

        div#tablecontainer div div.column3
        {
            width: 62px;
            float:left;
        }

        div#tablecontainer div div.column4
        {
            width: 104px;
            float:left;
        }


    </style>
</head>
<body>
    <h1>CSS and TABLE</h1>
    <table>
        <tr>
            <th class="column1">Header 1</th>
            <th class="column2">Header 2</th>
            <th class="column3">Header 3</th>
            <th class="column4">Header 4</th>
        </tr>
        <tr>
            <td class="column1">line 1 column 1</td>
            <td class="column2">line 1 column 2</td>
            <td class="column3">line 1 column 3</td>
            <td class="column4">line 2 column 4</td>
        </tr>
        <tr>
            <td class="column1">line 2 column 1</td>
            <td class="column2">line 2 column 2</td>
            <td class="column3">line 2 column 3</td>
            <td class="column4">line 2 column 4</td>
        </tr>
        <tr>
            <td class="column1">line 3 column 1</td>
            <td class="column2">line 3 column 2</td>
            <td class="column3">line 3 column 3 (more content)</td>
            <td class="column4">line 3 column 4</td>
        </tr>
    </table>
    <h1>CSS and DIV</h1>
    <div id="tablecontainer">
        <div class="tablecontainerrow">
            <div class="column1">Header 1</div>
            <div class="column2">Header 2</div>
            <div class="column3">Header 3</div>
            <div class="column4">Header 4</div>
        </div>
        <div class="tablecontainerrow">
            <div class="column1">line 1 column 1</div>
            <div class="column2">line 1 column 2</div>
            <div class="column3">line 1 column 3</div>
            <div class="column4">line 1 column 4</div>
        </div>
        <div class="tablecontainerrow">
            <div class="column1">line 2 column 1</div>
            <div class="column2">line 2 column 2</div>
            <div class="column3">line 2 column 3</div>
            <div class="column4">line 2 column 4</div>
        </div>
        <div class="tablecontainerrow">
            <div class="column1">line 3 column 1</div>
            <div class="column2">line 3 column 2</div>
            <div class="column3">line 3 column 3 (more content)</div>
            <div class="column4">line 3 column 4</div>
        </div>
    </div>
</body>
</html>
share|improve this answer
That was a very good solution. It only doesn´t work with IE6. It was flagged as correct. Thank you! – rperson Jun 10 '11 at 11:54
I presume that I cannot get a vertical alignment of the text as the table does, isn´t it? – rperson Jun 10 '11 at 12:40
@rperson - You mean like you would if you used vertical-align property? No, you'd have to use display:table-cell for that to work, or you'll have to fake it with padding. – Richard JP Le Guen Jun 10 '11 at 13:09
1  
Challenges of being a CSS-P – KMån Mar 3 '12 at 15:20
tank you, really help on IE and accessibility. – forX Feb 22 at 16:06
show 2 more comments

Using tables to layout pages is not very professional but using tables to display tables is perfectly ok - this is for what they should be used. Emulating tables using divs and css is taking css layouting way too far.

share|improve this answer
I agree, but what about the situation in which a tabular data view is only one among several other presentation layouts that can be choosen by the user? – rperson Jun 9 '11 at 23:33
Radical change of layout of a page (or its part) using css only may be difficult. It is not always possible to totally separate structure of a document (HTML) from its presentation (CSS), at least without heavy effort. To achieve some effects or work-around some browser specific bugs, you have to change the structure (e.g. add some magic divs). To make it possible, cheaper and less frustrating, I would consider replacing both, CSS and HTML. The replace can be done on the server side in case of traditional pages or on the client side (using JS) when page refresh is not desired. – Dariusz Walczak Jun 10 '11 at 9:01
I hope that I understood your question correctly :D – Dariusz Walczak Jun 10 '11 at 9:04
Thanks for your comments. They are pertinent and make sense to me. – rperson Jun 10 '11 at 11:18

This is a horrid answer, I can't believe I'm even suggesting it, BUT, if you are hell bent on making a table out of divs...

As is stated in the comments, if it is a table, use a table, tables are not evil, they were just overused at one time to do things they weren't designed for. They are designed to display tabular data so if you can, use them.

This is only suggested if you MUST make a table with divs

There is a little known display property in CSS to help you with this, read here: table-cell css.

Again, just use a table, if you can.

share|improve this answer
And using display:table-cell on anything but a td element causes all sorts of gremlins to come out in browsers. Highly frowned down upon and from a semantic point of view, it is actually incorrect to use divs to present tabular data. – colinross Jun 9 '11 at 20:56
1  
Using table-cell on a td is like writing the word DOG on your pet beagle. – Jeremy B. Jun 9 '11 at 20:59
its only there to reset back to the correct value in case you have issues with inheritance from parent values. It actually started as (browser) rendering mode and the css value was added to manually trigger that rendering mode. Each browser is slightly different in when that mode will actually produce the required results since misused of that value can lead to situations where the rendering engine is told to render a table cell with no parent row, rowset, or table. – colinross Jun 9 '11 at 21:10

If you are presenting tabular data (multiple attributes of multiple similar entities, aka tabular data), use a <table> tag

share|improve this answer
div#tablecontainer
{
    width: 328px;
    display:table;
}

div.tablecontainerrow
{
    display:table-row;
}
div.tablecontainerrow div{
    display:table-cell;
    vertical-align:middle;
}

Of course, I think most current browsers handle this, except for MSIE...

share|improve this answer
this would be the correct "give a man a fish" answer – Michael Jasper Jun 9 '11 at 21:00
Aight, granted, this is next to useless, and about it's only purpose is to check whether browsers accurately support the CSS feature. It could do some good in XHTML with embedded XML, but that's about it. – Wrikken Jun 9 '11 at 21:03
1  
Just so you know: caniuse.com/css-table – thirtydot Jun 9 '11 at 22:50
it is a interesting solution, but it is a pity that display: table only works with IE 8.0 and above. Unfortunately, I think that IE 7.0 yet is a must. Don´t you? – rperson Jun 10 '11 at 0:50
Depends: on the public internet, supporting MSIE 7 (and for some sites, MSIE 6, check the user-agent stats of a particular site) is mostly a must. Then again, as I said, about it's only use is when embedding displayable XML in XHTML, which I've seen more on intranets then on the internet (but that may be my limited experience), and in a controlled environment you of course have a say which browsers are going to be used. – Wrikken Jun 10 '11 at 6:44

As far as I know, the only way to get around this is to explicitly set the height of your 'columns', otherwise the divs will default to height:auto, and will only be as big as the content within them. Setting the height can be dangerous if you have content that requires more space than the height will allow.

share|improve this answer
As a general rule, setting height is trying to force a presentation-layer (HTML) that was explicitly designed to NOT enforce vertical layout-- to enforce vertical layout-- and as such, is problematic-- both in theory and practice. – colinross Jun 9 '11 at 20:59
it is not the solution, because column´s content is dynamic and I don´t know its length. – rperson Jun 9 '11 at 22:41

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.