简体   繁体   中英

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

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 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM