Quote:
Originally Posted by augenauf
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>