| | |
|
|
|
Re: CSS vs. Layers |
| message from Murray *TMM* on 21 Jul 2004 |
It's very simple, really.
For centering layers, here is a good demo -
http://www.roast-horse.com/tutorials/_tutorials/css_centered_content/index.html
and here is some example code -
(inline styles used for clarity)
<div id="wrapper" style="width:760px; top:0; margin:0 auto;
position:relative;">
<div id="layer1" style="width:200px; top: 25px; left:140px;
position:absolute;">blah</div>
<div id="layer2" style="width:180px; top: 136px; left:23px;
position:absolute;">blah</div>
</div>
Try that - an outer relatively positioned division with a width and auto
left and right margins. All interior AP divisions will be centered, yet
retain the
same relative positioning.
|
| Al Sparber- PVII replied to Murray *TMM* on 23 Jul 2004 |
perfect :-)
|
|
Archived message: Re: CSS vs. Layers (Macromedia Dreamweaver Web Design)