Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Nested divs and padding 1

Status
Not open for further replies.

seanybravo

IS-IT--Management
Sep 24, 2003
89
GB
Hello

I was wondering if some css guru would be able to offer me an explanation. I have two divs one nested inside the other. The width to both divs are set to 100%. But when I put padding on the internal one it becomes longer that the enclosing div and comes out of the right side. Why is this and what is the best solution to this.

Code:

<html xmlns="<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Box test</title>
<style type="text/css">
<!--
body { margin: 40px;
}

#box {
width: 100%; color: #000; background-color: #CC9900; border: solid 1px #5E78C2; padding:0px 0px 0px 10px;
/*font: normal 0.8em/1.5 em arial, helvetica, sans-serif; margin:5px 0px 0px 0px;*/
}

#wrapper { width 100%; border:2px solid grey;
}

-->
</style>
</head>

<body>

<div id="wrapper">
<form name="form1" method="post" action="">
<div id="Box" >
Hello im living in box!


</div>
</form>
</div>
</body>
</html>
 
That is correct. Width is the inner width of the box where the content goes. If that one is 100% of the parent, then added 10px padding pushes the box 10px out of the parent. Same with the margin (which is currently commented out in your code). A simple solution to this is knowing that divs are block level elements with width set to 100% by default. Thus, by omitting that bit of information and providing only padding (or margin or both), the browser will automagically deduct those values from 100% and render the box properly. In lame terms, remove the width declaration from the child and you will be ok.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top