Need generic div css that does not overlap (like a table) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:51:24Z http://stackoverflow.com/feeds/question/723476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table 2 Need generic div css that does not overlap (like a table) fcs 2009-04-06T22:19:26Z 2009-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>&lt;style type="text/css"&gt; 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; } &lt;/style&gt; &lt;div class="box"&gt; &lt;div class="box-header"&gt;please_help_make_these_divs_stop_overlapping&lt;/div&gt; &lt;div class="box-body"&gt;please_help_make_these_divs_stop_overlapping&lt;/div&gt; &lt;/div&gt; &lt;table class="box" width="100%" cellpadding="0" cellspacing="0"&gt; &lt;tr&gt;&lt;td class="box-header"&gt;tables_make_good_containers_tables_make_good&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td class="box-body"&gt;tables_make_good_containers_tables_make_good&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; </code></pre> http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table/723523#723523 1 Answer by Mikko Tapionlinna for Need generic div css that does not overlap (like a table) Mikko Tapionlinna 2009-04-06T22:37:31Z 2009-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#723697 0 Answer by buti-oxa for Need generic div css that does not overlap (like a table) buti-oxa 2009-04-07T00:01:35Z 2009-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 -1 Answer by wheresrhys for Need generic div css that does not overlap (like a table) wheresrhys 2009-04-07T08:59:30Z 2009-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#724834 0 Answer by Rory Fitzpatrick for Need generic div css that does not overlap (like a table) Rory Fitzpatrick 2009-04-07T09:35:57Z 2009-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>&lt;style type="text/css"&gt; * { 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; } &lt;/style&gt; &lt;div class='box'&gt; &lt;h3&gt;please help make these divs stop overlapping&lt;/h3&gt; &lt;p&gt;please help make these divs stop overlapping&lt;/p&gt; &lt;/div&gt; </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 -1 Answer by joelpittet for Need generic div css that does not overlap (like a table) joelpittet 2009-04-07T18:44:24Z 2009-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>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Test&lt;/title&gt; &lt;style type="text/css"&gt; 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; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;h2&gt;Option 1&lt;/h2&gt; &lt;div class="box"&gt; &lt;div class="box-header"&gt;please help make these divs stop overlapping&lt;/div&gt; &lt;div class="box-body"&gt;please help make these divs stop overlapping&lt;/div&gt; &lt;/div&gt; &lt;table class="box" width="100%" cellpadding="0" cellspacing="0"&gt; &lt;tr&gt;&lt;td class="box-header"&gt;please help make these divs stop overlapping&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td class="box-body"&gt;please help make these divs stop overlapping&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;hr /&gt; &lt;h2&gt;Option 2&lt;/h2&gt; &lt;div class="box-wrapper"&gt; &lt;div class="box"&gt; &lt;div class="box-header"&gt;tables make good containers tables make good&lt;/div&gt; &lt;div class="box-body"&gt;tables make good containers tables make good&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;table class="box" width="100%" cellpadding="0" cellspacing="0"&gt; &lt;tr&gt;&lt;td class="box-header"&gt;tables make good containers tables make good&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td class="box-body"&gt;tables make good containers tables make good&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table/730637#730637 0 Answer by Traingamer for Need generic div css that does not overlap (like a table) Traingamer 2009-04-08T15:52:54Z 2009-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>&lt;style type="text/css"&gt; 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; } &lt;/style&gt; </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#730816 1 Answer by Kristof Neirynck for Need generic div css that does not overlap (like a table) Kristof Neirynck 2009-04-08T16:33:22Z 2009-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>