vote up 0 vote down star

I've got question related to center the page using div#container Typically the container code is like this:

div#container
{
margin-left: auto;
margin-right: auto;
width: 50em;
}

The container div tag wrap the part of the code that I would like to align center inside it.

For example we have 2 object A and object B _object A is position Absolute _Object B is position Relative

Both Object A and B are wrapped inside container

Problem: only object B (position relative) is align center The object A (absolute position) is not align center

So, how to center the things that are positioned already as absolute? Thank you for any explaination

flag

10% accept rate
Can you post sample HTML of what you are describing with Object A and Object B – tschaible Jun 15 at 10:38
Cannot repeat the problem described in FF3. Both inner div are centered. – billyswong Jun 15 at 10:51
centering an absolute positioned element kinda defies the whole purpose of setting it to absolute. If you have it inside a fixed width element, just set the margin-left to be (50% - element width). – peirix Jun 15 at 10:58

1 Answer

vote up 1 vote down

Try setting position:relative on the #container div. Position:absolute will otherwise be absolute on the window not the div.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.