Monday, August 29, 2005, 11:46:32 AM, Jessica Mays wrote:
> What I need to be able to do is control the placement of text
> menu within this div container. I know how to so this when my page is
> set to be aligned to the left on the browser using absolute placement,

The key is moving your reference point for the absolute positioning.  By
default the browser uses the BODY element (which you've used).  But by
positioning an ancestor element (even "position:relative" with no movement)
you can make it the new reference point for absolute positioning for all
its decedents.

In short, give your container "position:relative" and its contents can now
be absolutely positioned with respect to it instead of BODY.

P.S. Be careful to use absolute positioning sparingly in your layouts.  Floats
work better for varying amounts of content and dealing with user font-size
changes.

Steve
-- 
http://mrclay.org/ : http://frenchhorns.mrclay.org/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to