I have an element of initially unknown width, specifically a MathJax equation supplied by the user. I have the element set as inline-block to ensure that the width of the element fits its contents and so that it has a defined width. However, this prevents traditional methods of centering. That is, the following does not work:

.equationElement
{
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

And the solution cannot be:

.equationElement
{
    display: block;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

Because I have no idea what the width should actually be beforehand and if the user clicks on the equation, I need the entire equation highlighted, so I cannot set the width to 0. Does anyone have a solution to centering this equation?

If you want to see what I mean by a highlighted equation directly, please go here and click on an equation (though you have to log in so it is completely understandable if you would rather try and answer without logging into this application):

http://app.vedaproject.org/index.php?field=Social_Sciences&subject=Finance&course=Introduction_to_Finance&section=Asset_Pricing&lesson=Two_Stage_Fama-Macbeth_Factor_Premium_Estimation

If you can find a way to center the equation that is separated from a paragraph while maintaining its dynamic width from being an inline-block element, that would be extremely helpful.

Note that I am comfortable with a "hack" as a solution.

link|improve this question

By the way, registration seems broken with Chrome on that page. Nothing happens if I click the Register button, with and without JavaScript. – phihag Sep 29 '11 at 18:26
Fascinating! I'm using Chrome and it works fine for me. What account type are you using? Google, Facebook, Twitter? – Vivek Viswanathan Sep 29 '11 at 18:32
1  
myopenid. I'm 100% it won't work in google chrome if JavaScript is turned off. The button hasn't even a form, and isn't a submit button anyways. – phihag Sep 29 '11 at 18:37
Ah, I see. I haven't check all possible logins. Thank you for that note. Otherwise, I would have never known. The application is heavily dependent on Javascript, so being unable to register without JS is fine. However, I should make note of that somewhere if a user does not have JS activated. Thank you. – Vivek Viswanathan Sep 29 '11 at 18:42
One more thing: Your project sounds interesting, so I visited its website. The developer page states "The Veda Project is open source, (...)", but I can't find a link to a github (or any other) repository. Why don't you add one? And, no offense, but having a donate page while the project is really just a business card makes it look like a scam. And why is the donation page's country preset to the US instead of the country my IP is from? – phihag Sep 29 '11 at 18:49
show 2 more comments
feedback

1 Answer

up vote 4 down vote accepted

Simply set text-align: center; on the container.

Here's a demo.

link|improve this answer
This is a great idea and it works if I set display: block but then then the element takes up the width of its container or I'd have to set the width manually but I don't know what the width will be. It doesn't work if the element is set as inline-block. The reason why it needs to be inline-block is so that its width is dynamic to its contents. Thanks for the great idea though. If you can alter it such that it works for inline-block that would be perfect. – Vivek Viswanathan Sep 29 '11 at 18:29
1  
@Vivek Viswanathan Could you elaborate why "It doesn't work if the element is set as inline-block"? Added a link to a demo page. – phihag Sep 29 '11 at 18:35
That seems to work because text-align: center is set on the parent element. However, I cannot do that in my code because the inline-block element has siblings that cannot be centered. Thanks again for your help on this. – Vivek Viswanathan Sep 29 '11 at 18:42
1  
@Vivek Viswanathan Well, can't you then pack just the formula into a special display:block; container on its own? That container will occupy 100% of the width, but that shouldn't be a problem, or is it? – phihag Sep 29 '11 at 18:51
This is an excellent point, @phihag. Thank you. – Vivek Viswanathan Sep 29 '11 at 18:52
feedback

Your Answer

 
or
required, but never shown

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