I read that the <center> tag is deprecated, however I cannot find any real equivalent to it in CSS. text-align works for text but not other elements, and auto margins only work if you know the width of the container (so not a solution if you don't know the width in advance). So is there any real equivalent to this <center> tag?

link|improve this question

Answers in stackoverflow.com/questions/1798817/… – Ray Toal Aug 29 '11 at 4:30
feedback

1 Answer

up vote 2 down vote accepted

text-align should work for other kinds of elements. Does this work?

.center { margin: auto; text-align: center; }

link|improve this answer
Perfect, thanks a lot! – Laurent Aug 29 '11 at 14:50
I'll send you my bill in the mail. 8-) – Don Quixote Aug 29 '11 at 17:51
feedback

Your Answer

 
or
required, but never shown

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