vote up 2 vote down star
2

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>
flag
I can not see them overlapping they work the same way, what's the problem here? – Mikko Tapionlinna Apr 6 at 22:22
I don't see any issues. IE6 and FF2 both show the same behavior -- it's working correctly. – Zack Mulgrew Apr 6 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 at 22:28
Resize your browser way down (IE or Firefox) the table contains but divs do not. – fcs Apr 6 at 22:31
I increased the padding to 1000 so you can easily see overlap – fcs Apr 6 at 22:36

7 Answers

vote up 1 vote down check

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|flag
I wish there was an overflow:contain; in css. – Mikko Tapionlinna Apr 6 at 22:38
Thanks. overflow:contain is exactly what I need. Then I can stop using tables. – fcs Apr 6 at 22:43
AFAIK there is no such value as overflow: contain w3schools.com/Css/pr_pos_overflow.asp – Calvin Apr 7 at 1:35
There is no such value, that's why I said that I wish there was. – Mikko Tapionlinna Apr 7 at 5:14
display:table is not a realistic option until it is supported by IE – Rory Fitzpatrick Apr 7 at 9:20
show 3 more comments
vote up 0 vote down

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|flag
Thanks. I want the widths to be the same. Sounds like I need to use tables. – fcs Apr 7 at 14:00
vote up -1 vote down

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|flag
Works great in IE but not so good in Firtefox or chrome. – fcs Apr 7 at 14:24
I tested it in Firefox and it was fine for me – wheresrhys Apr 7 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 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 at 21:43
Resizes fine in IE – fcs Apr 7 at 21:43
show 4 more comments
vote up 0 vote down

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|flag
Thanks but this still allows overlaps. Nice but misses the point of the question. – fcs Apr 7 at 13:55
Please explain what you mean by 'overlaps' then, this worked fine for me in FF3. – Rory Fitzpatrick Apr 7 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 at 21:22
vote up -1 vote down

Here is a couple of options for you. Option 1 keeps the structure but the boxes may become uneven in width. Option 2 adds an extra wrapping tag and they look like the table.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
<head>
    <title>Test</title>
    <style type="text/css">

     	div.box{
    		overflow: auto; /* gives shape to this box since content inside floats */
    		position: relative; /* IE6 Fix to add HasLayout */
    	}

    	div.box-wrapper {
    		overflow: hidden; /* gives shape to this box since content inside floats */
    		position: relative; /* IE6 Fix to add HasLayout */
    	}

    	div.box-wrapper div.box {
    		float:left;
    		width: auto;
    	}

    	div.box,
    	table.box {
            padding: 10px 1000px 10px 10px;
        }

    	div.box-header,
    	div.box-body {
    		float: left;
    		display: block;
    		width: auto;	
    	}

        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>

</head>
<body>
    <h2>Option 1</h2>
    <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">please help make these divs stop overlapping</td></tr>
        <tr><td class="box-body">please help make these divs stop overlapping</td></tr>
    </table>
    <hr />

    <h2>Option 2</h2>
    <div class="box-wrapper">
    	<div class="box">
    		<div class="box-header">tables make good containers tables make good</div>
    	    <div class="box-body">tables make good containers tables make good</div>
    	</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>

</body>
</html>
link|flag
That's cool and it works fine in firefox. Does not work in IE. Threw the page up here: c3o.com/joel.htm – fcs Apr 7 at 22:18
Like Mikko said above I really want something like "overflow:contain;". – fcs Apr 7 at 22:19
yeah that would be nice. This was funny after you posted this, I spotted this URL zazzle.com/css_is_awesome_mug-168716435071981928/… Maybe tables are more robust solution for now. with a nice comment saying <!-- When CSS is working right this won't be a table --> – joelpittet Apr 13 at 22:25
vote up 0 vote down

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|flag
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 at 1:24
I misunderstood the problem. I'll look at again later - only have IE at work. – Traingamer Apr 14 at 13:27
vote up 1 vote down

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|flag
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 at 17:17
It is very basic. – Traingamer Apr 9 at 18:55
my answer is giveupandusetables.com – fcs Apr 14 at 1:29

Your Answer

Get an OpenID
or

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