Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is this valid CSS to center the div and also apply a top margin?

div {
     margin: 0 auto;
     margin-top: 30px;
     }
share|improve this question
Did you check the validator? – SLaks Feb 6 '12 at 19:02

7 Answers

up vote 5 down vote accepted

yes, but with regards to centering the div you'll also want to apply width to it.

share|improve this answer

Use the following to specify margins:

div { margin : 30px auto 0 auto; } /* margin: [top] [right] [bottom] [left] */
share|improve this answer

yes it is, because margin: 0 auto is setting top and bottom to 0 and left and right to auto so setting top to 30px is just the same as saying margin : 30px auto 0 auto;

share|improve this answer

Yes. And they're right:

div { width: 90%; margin : 30px auto 0 auto; }

I generally use 90% width as a good starting point.

share|improve this answer

I don't see why not...you could also shorten this to:

div {margin: 30px auto 0;}

share|improve this answer

It's valid, but it can be shorter like this:

div {margin: 30px auto 0;}

When you only give three values, the middle value is applied to both left and right sides.

share|improve this answer

Yes, it's valid. margin-top will override the margin rule.

Though you might wanna add a width to center it.

share|improve this answer

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.