Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a divider that is centered in the page using margin:auto. Inside I have two more dividers (can't be combined, must be a divider nested in a divider) when I try to center something inside of this it does not center it in the center of the page. I'm assuming it has to do with the padding-left and padding-right that I've added... Any insight?

Here's my code:

<center>
    <div style="margin:auto; width:80%;">
        <div style="width:50%; padding-left:20%; padding-right:20%;">
            <div style="width:inherit; position:absolute; bottom:0%;">
                <hr />
                test
                <hr />
                <br><br><br>
            </div>
        </div>
    </div>
</center>
share|improve this question
I'm a little confused why you have to nest your DIVs. I can create your test DIV successfully (centered and everything) without nesting. As a footer, couldn't it exist outside the nesting? – mendota Nov 21 '11 at 19:48

1 Answer

up vote 4 down vote accepted

Just remove the center tag:

<div style="margin:auto; width:80%;">
    <div style="width:50%; padding-left:20%; padding-right:20%;">
        <div style="width:inherit; position:absolute; bottom:0%;">
            <hr />
            test
            <hr />
            <br><br><br>
        </div>
    </div>
</div>

Check it out here: http://jsfiddle.net/V8qMm/

share|improve this answer
2  
+1. Also need to add text-align:center; in there somewhere. – Jason Gennaro Nov 21 '11 at 19:37
@Jason Gennaro - Only if he wants the text to be centered. – Joseph Silber Nov 21 '11 at 19:39
1  
Agreed @Joseph. I think that is the intention. – Jason Gennaro Nov 21 '11 at 19:45
Thank-you very much! Can anyone offer insight as to why the center tag would mess this up? Was is centering the padding? – Albert Renshaw Nov 22 '11 at 3:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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