Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to left align elements in a jqmath table

If I try to create a table in jqmath, it always centers the elements. So if I write

$$\table a , b ; c , dddddddddddd ;$$

then I get

a          b
c    dddddddddddd

How do I make jqmath align the columns to the left, so that the table is displayed as

a    b
c    dddddddddddd
like image 727
Damascus Steel Avatar asked Jan 23 '26 13:01

Damascus Steel


1 Answers

All you need to do is style the appropriate tags.

<style type="text/css">
mtd, .fm-mtd  {
    text-align:left;
}
</style>

This is demonstrated in the following fiddle.

To find out more about how to style code generated by jqMath, just look at their CSS style sheet.

jqMath behaves differently on differing browsers. By default, Chrome displays the text using left alignment, whereas Firefox displays the text using center alignment. Chrome uses <td class="fm-mtd"> while Firefox uses <mtd>. The tag used depends upon whether the web browser supports MathML.

To learn more about text-align, visit the Mozilla Developer Network.

like image 76
creemama Avatar answered Jan 25 '26 02:01

creemama



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!