Inner div exceeds outer div boundaries - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T06:57:26Zhttp://stackoverflow.com/feeds/question/259753http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/259753/inner-div-exceeds-outer-div-boundaries0Inner div exceeds outer div boundariesCaveatrob2008-11-03T20:05:16Z2008-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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
/*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;
}
</style>
</head>
<body>
<div class="box">
<div style="width: 1500px; height: 900px; background: #f12;">Hello World</div>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/259753/inner-div-exceeds-outer-div-boundaries/259761#2597611Answer by Javier for Inner div exceeds outer div boundariesJavier2008-11-03T20:09:44Z2008-11-03T20:09:44Z<p>add <code>overflow:hidden;</code> to the container <code><div></code></p>
http://stackoverflow.com/questions/259753/inner-div-exceeds-outer-div-boundaries/259843#2598430Answer by Caveatrob for Inner div exceeds outer div boundariesCaveatrob2008-11-03T20:30:20Z2008-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#2599770Answer by Traingamer for Inner div exceeds outer div boundariesTraingamer2008-11-03T21:11:31Z2008-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><title>Test</title></code>)</em></p>
http://stackoverflow.com/questions/259753/inner-div-exceeds-outer-div-boundaries/260792#2607921Answer by Steve Perks for Inner div exceeds outer div boundariesSteve Perks2008-11-04T03:39:28Z2008-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>