Well, yes. If you give the wrapper relative position, then it will contain the absolute positioned elements:
HTML Code:
<div style="position: relative;">
<div style="position: absolute;">
</div>
</div>
The inner division is absolute, but will be absolute in relation to the relatively positioned container. If you give the container width and height, it will lay out on the page like a static positioned element. If you use a valid URL DOCTYPE, the container (as long as its width is defined) may be centered on the page using:
margin: 0 auto;
Bookmarks