Inner div exceeds outer div boundaries - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:57:26Z http://stackoverflow.com/feeds/question/259753 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/259753/inner-div-exceeds-outer-div-boundaries 0 Inner div exceeds outer div boundaries Caveatrob 2008-11-03T20:05:16Z 2008-11-18T03:07:30Z <p>I can't get the inner div (with Hello World) to fit inside the "box" div in this code example (also at <a href="http://www.toad-software.com/test.html" rel="nofollow">http://www.toad-software.com/test.html</a>).</p> <p>Despite the body being set to 100%, the inner div will not be contained! This is a test case for a larger project in which a variable-width table exceeds the boundaries of its container. The table would be in the inner div and the container would the "box."</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;style type="text/css"&gt; /*html { width: 100%; height: 100%; position: relative; background: #c0c0c0; } body { position: absolute; width: 100%; height: 100%; background: #f9f9f9; }*/ body, html { margin: 0; padding: 0; } body { width: 100%; } div.box { padding: 10px; background: #ff33ff; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="box"&gt; &lt;div style="width: 1500px; height: 900px; background: #f12;"&gt;Hello World&lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/259753/inner-div-exceeds-outer-div-boundaries/259761#259761 1 Answer by Javier for Inner div exceeds outer div boundaries Javier 2008-11-03T20:09:44Z 2008-11-03T20:09:44Z <p>add <code>overflow:hidden;</code> to the container <code>&lt;div&gt;</code></p> http://stackoverflow.com/questions/259753/inner-div-exceeds-outer-div-boundaries/259843#259843 0 Answer by Caveatrob for Inner div exceeds outer div boundaries Caveatrob 2008-11-03T20:30:20Z 2008-11-03T20:30:20Z <p>I should have explained better. The box should stretch to accommodate the inner div contents.</p> http://stackoverflow.com/questions/259753/inner-div-exceeds-outer-div-boundaries/259977#259977 0 Answer by Traingamer for Inner div exceeds outer div boundaries Traingamer 2008-11-03T21:11:31Z 2008-11-03T21:11:31Z <p>It looks good to me (in IE6 XP). What happens if you add the required title tag in the head? <em>(e.g. <code>&lt;title&gt;Test&lt;/title&gt;</code>)</em></p> http://stackoverflow.com/questions/259753/inner-div-exceeds-outer-div-boundaries/260792#260792 1 Answer by Steve Perks for Inner div exceeds outer div boundaries Steve Perks 2008-11-04T03:39:28Z 2008-11-04T03:39:28Z <p>The 100% width on the body element is in relation to the view port, which is why you're background color is cutting when you scroll. Either set a width to your body at 1520px to encompase the contained div or add another div and do the following:</p> <pre><code>div.box { width: 100px; overflow: auto; } </code></pre> <p>However, as a word of warning, heading down the path of horizontal scrolling is a bad idea for a first project in css and in user experience. </p>