up vote 3 down vote favorite
1
share [g+] share [fb]

I'm trying to use divs instead of tables to style boxes around my content. The content can be any size and needs to allow the browser to be resized to any degree. Need the background color and border to contain the content. This works fine with tables. How do I get a div to work the same way?

Note: I added "_"s because my non-breaknig spaces were getting lost.

Sample Page

Sample image

alt text

Content:

<style type="text/css">
    div.box, table.box
    {
        padding: 10px 1000px 10px 10px;
    }

    div.box-header, td.box-header
    {
        border:  solid  1px  #BBBBBB ;
        font-size: larger;
        padding: 4px;
        background-color: #DDDDDD;
    }   

    div.box-body, td.box-body
    {
        padding: 6px;
        border:  solid  1px  #BBBBBB ;
        border-top: none;
    }
</style>


<div class="box">
    <div class="box-header">please_help_make_these_divs_stop_overlapping</div>
    <div class="box-body">please_help_make_these_divs_stop_overlapping</div>
</div>

<table class="box" width="100%" cellpadding="0" cellspacing="0">
    <tr><td class="box-header">tables_make_good_containers_tables_make_good</td></tr>
    <tr><td class="box-body">tables_make_good_containers_tables_make_good</td></tr>
</table>
link|improve this question
I can not see them overlapping they work the same way, what's the problem here? – Mikko Tapionlinna Apr 6 '09 at 22:22
I don't see any issues. IE6 and FF2 both show the same behavior -- it's working correctly. – Zack The Human Apr 6 '09 at 22:25
Sorry, I keep trying to upload my image...does not seem to be making it. Take a look at: c3o.com/div-like-table.JPG – fcs Apr 6 '09 at 22:28
Resize your browser way down (IE or Firefox) the table contains but divs do not. – fcs Apr 6 '09 at 22:31
I increased the padding to 1000 so you can easily see overlap – fcs Apr 6 '09 at 22:36
feedback

7 Answers

up vote 2 down vote accepted

There is no easy way to do this that is crossbrowser friendly that I know of.

At least in firefox you can create an simulated table by setting divs with

display:table;
display:table-row;
display:table-cell;

So that those divs work like table elements. Then the box will contain it's content. Wether that's a good solution or not is debateable.

I've been having similar issues with page layouts myself. Usually I've solved those by setting min-width and overflow:auto;

link|improve this answer
I wish there was an overflow:contain; in css. – Mikko Tapionlinna Apr 6 '09 at 22:38
Thanks. overflow:contain is exactly what I need. Then I can stop using tables. – fcs Apr 6 '09 at 22:43
AFAIK there is no such value as overflow: contain w3schools.com/Css/pr_pos_overflow.asp – Calvin Apr 7 '09 at 1:35
There is no such value, that's why I said that I wish there was. – Mikko Tapionlinna Apr 7 '09 at 5:14
display:table is not a realistic option until it is supported by IE – roryf Apr 7 '09 at 9:20
show 3 more comments
feedback

If you really don't want to use a table you can do this:

div.box div {
  overflow: hidden;
  zoom: 1; /* trigger haslayout for ie */
}

Next time this kind of problem comes up go to giveupandusetables.com.

link|improve this answer
Nice link. I am surprised how hard this has been. Seems like such a basic thing: "a container that always contains content". – fcs Apr 9 '09 at 17:17
It is very basic. – Traingamer Apr 9 '09 at 18:55
my answer is giveupandusetables.com – fcs Apr 14 '09 at 1:29
feedback

One way is to make your boxes floats. Add float:left; to box, box-header, and box-body. Add clear:both; to box-body to force it below box-header. You'll probably need to add clear property to whatever content follows as well.

You will not get right edges of box-header and box-body to align, though. If you want their widths to be the same, you really want a table. Table is a tool to make all cells in the same column to share the widths.

For other ideas, check out this SO question.

link|improve this answer
Thanks. I want the widths to be the same. Sounds like I need to use tables. – fcs Apr 7 '09 at 14:00
feedback

Firstly, you should be using semantic markup. If something is a header and content mark it up as such with header and paragraph tags. That will help you move out of the 'table-way' of thinking were you try to emulate your markup and styles like a table, markup should come first, CSS can come after.

The following should do what you want:

<style type="text/css">
    * {
    margin:0px;
    padding:0px;
    }
.box {
border: solid 1px #BBBBBB;
margin:10px;
}
.box h3 {
padding: 4px;
border-bottom: solid 1px #BBBBBB;
background-color: #DDDDDD;
}
.box p {
padding: 6px;
}
</style>

<div class='box'>
    <h3>please help make these divs stop overlapping</h3>
    <p>please help make these divs stop overlapping</p>
</div>

Thinking about markup and style separately is the path to CSS Zen Mastery :o)

link|improve this answer
Thanks but this still allows overlaps. Nice but misses the point of the question. – fcs Apr 7 '09 at 13:55
Please explain what you mean by 'overlaps' then, this worked fine for me in FF3. – roryf Apr 7 '09 at 15:17
I added some non-breaking spaces to make it more obvious. Check out this image of firefox: c3o.com/overlap1.jpg. I just need a container that will not overlap (like a table). – fcs Apr 7 '09 at 21:22
feedback

This works (actually holds together better than tables in ie7 too)

div.box{
  float:left;
  width:auto;
  margin: 10px 1000px 10px 10px;
}

div.box-header{
  float:left;
  width:100%;
  border:  solid  1px  #BBBBBB ;
  font-size: larger;
  padding: 4px; 
  background-color: #DDDDDD;
}

div.box-body{
  clear:left;
  float:left;
  width:100%; 
  padding: 4px; 
  border:  solid  1px  #BBBBBB ; 
  border-top: none;
}

NOTE: both boxes have to have same left and right padding or one juts out a bit.

link|improve this answer
Works great in IE but not so good in Firtefox or chrome. – fcs Apr 7 '09 at 14:24
I tested it in Firefox and it was fine for me – wheresrhys Apr 7 '09 at 17:13
Just tested again, this time in chrome and safari too. You sure you copied the code correctly? coz it definitely does work. – wheresrhys Apr 7 '09 at 17:18
The container should not overlap AND resize with the page. When I pull it up in firefox you solved the overlap but no resize. I put up a sample here: c3o.com/wheresrhys.htm – fcs Apr 7 '09 at 21:43
Resizes fine in IE – fcs Apr 7 '09 at 21:43
show 4 more comments
feedback

Floats are not needed, but you seem to be confusing the uses of margin vs. padding. The following minor tweaks to your style works as you need it to:

<style type="text/css">
    div.box, table.box
    {
        margin: 10px 1000px 10px 10px;
        border:  solid  1px  #BBBBBB ;
       padding: 0px;
    }

    div.box-header, td.box-header
    {

        font-size: larger;
        padding: 4px;
        background-color: #DDDDDD;
    border-bottom:  solid  1px  #BBBBBB ;

    }   

    .box-body, td.box-body
    {
        padding: 6px;
    }
</style>

I've changed the padding on the box to a margin, moved the border to your box, and added an underline to the header.

link|improve this answer
I probably am mixing up padding and margins but you solution still has the same overlap. Just run it with a non-quirks mode doc-type. – fcs Apr 14 '09 at 1:24
I misunderstood the problem. I'll look at again later - only have IE at work. – Traingamer Apr 14 '09 at 13:27
feedback

I had this problem also using Firefox 6.0.1, Opera 10.62, Safari 5.1, but not in IE 9, and the overflow:auto fixed it in all browsers. Nothing else did. I also tried overflow:contain, which also fixed the problem, but it appears that contain is not a valid value for overflow, so I am assuming that, since the value was not valid, auto was substituted.

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.