View Single Post
  #15 (permalink)  
Old 01-20-2008, 10:39 AM
ydx ydx is offline
Regular Babbler
 
Join Date: Jan 2008
Posts: 84
ydx has a few positive reputation points
Default

Quote:
Originally Posted by augenauf View Post
I think I like the google ad outside better, but tell me more about this wrapper div. O: Where might I learn more?
A wrapper or container div is a div that holds everything else in it. You can place all your content inside of it. By using this, you can position all of your content (down, left, right, center, etc).

Like so:

Code:
<body>
<div id="container">

<div class="top">
</div>

<div class="middle">
</div>

<div class="bottom">
</div>

</div>
</body>
</html>
Reply With Quote