Need generic div css that does not overlap (like a table) - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T20:51:24Zhttp://stackoverflow.com/feeds/question/723476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table2Need generic div css that does not overlap (like a table)fcs2009-04-06T22:19:26Z2009-04-08T17:04:29Z
<p>I'm trying to use divs instead of tables to style boxes around my content. The content can be <strong>any size</strong> and needs to allow the browser to be <strong>resized to any degree</strong>. Need the background color and border to <strong>contain the content</strong>. This works fine with tables. How do I get a div to work the same way?</p>
<p>Note: I added "_"s because my non-breaknig spaces were getting lost.</p>
<p><a href="http://www.c3o.com/divonly.htm" rel="nofollow">Sample Page</a></p>
<p><a href="http://www.c3o.com/div-like-table.JPG" rel="nofollow">Sample image</a> </p>
<p><img src="http://www.c3o.com/div-like-table.JPG" alt="alt text" /></p>
<p>Content:</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table/723523#7235231Answer by Mikko Tapionlinna for Need generic div css that does not overlap (like a table)Mikko Tapionlinna2009-04-06T22:37:31Z2009-04-06T22:37:31Z<p>There is no easy way to do this that is crossbrowser friendly that I know of.</p>
<p>At least in firefox you can create an simulated table by setting divs with</p>
<pre><code>display:table;
display:table-row;
display:table-cell;
</code></pre>
<p>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. </p>
<p>I've been having similar issues with page layouts myself. Usually I've solved those by setting min-width and overflow:auto;</p>
http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table/723697#7236970Answer by buti-oxa for Need generic div css that does not overlap (like a table)buti-oxa2009-04-07T00:01:35Z2009-04-07T05:33:20Z<p>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.</p>
<p>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.</p>
<p>For other ideas, check out <a href="http://stackoverflow.com/questions/450903/make-css-div-width-equal-to-contents/451074#451074">this SO question</a>.</p>
http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table/724723#724723-1Answer by wheresrhys for Need generic div css that does not overlap (like a table)wheresrhys2009-04-07T08:59:30Z2009-04-07T17:12:06Z<p>This works (actually holds together better than tables in ie7 too)</p>
<pre><code>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;
}
</code></pre>
<p>NOTE: both boxes have to have same left and right padding or one juts out a bit.</p>
http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table/724834#7248340Answer by Rory Fitzpatrick for Need generic div css that does not overlap (like a table)Rory Fitzpatrick2009-04-07T09:35:57Z2009-04-07T09:35:57Z<p>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.</p>
<p>The following should do what you want:</p>
<pre><code><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>
</code></pre>
<p>Thinking about markup and style separately is the path to CSS Zen Mastery :o)</p>
http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table/727088#727088-1Answer by joelpittet for Need generic div css that does not overlap (like a table)joelpittet2009-04-07T18:44:24Z2009-04-07T18:44:24Z<p>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.</p>
<pre><code><!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>
</code></pre>
http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table/730637#7306370Answer by Traingamer for Need generic div css that does not overlap (like a table)Traingamer2009-04-08T15:52:54Z2009-04-08T17:04:29Z<p>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:</p>
<pre><code><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>
</code></pre>
<p>I've changed the padding on the box to a margin, moved the border to your box, and added an underline to the header. </p>
http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table/730816#7308161Answer by Kristof Neirynck for Need generic div css that does not overlap (like a table)Kristof Neirynck2009-04-08T16:33:22Z2009-04-08T16:33:22Z<p>If you really don't want to use a table you can do this:</p>
<pre><code>div.box div {
overflow: hidden;
zoom: 1; /* trigger haslayout for ie */
}
</code></pre>
<p>Next time this kind of problem comes up go to <a href="http://giveupandusetables.com/" rel="nofollow">giveupandusetables.com</a>.</p>