Tell me more ×
Graphic Design Stack Exchange is a question and answer site for professional graphic designers and non-designers trying to do their own graphic design. It's 100% free, no registration required.

I googled this question and searched for an hour, every one specify their own likes, but i want to know the correct code to align the div in center position.

share|improve this question
2  
This question is better suited (and answered several times) on stackoverflow.com -> stackoverflow.com/search?q=center+div – Scott Mar 6 at 14:12
As your research has shown, everyone has their own 'likes'--there is no one 'correct' way. – DA01 Mar 6 at 17:28

closed as off topic by Scott, Bakabaka, JohnB, leugim, DA01 Mar 6 at 17:28

Questions on Graphic Design Stack Exchange are expected to relate to graphic design within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 2 down vote accepted

ok if you give your div an id of #centerdiv, the following css should center it

#centerdiv {  margin: 0 auto; }

be aware that you will have to give that div a width value as well

share|improve this answer
1  
also this article may be of use here -designshack.net/articles/css/how-to-center-anything-with-css – MephistonX Mar 6 at 16:00

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