📅  最后修改于: 2023-12-03 15:15:43.171000             🧑  作者: Mango
HTML5 MathML columnalign 属性是用于在math元素中指定表格列的对齐方式。
<math>
<mtable columnalign="[左对齐|居中对齐|右对齐|小数点对齐|字符对齐]">
<!-- mtr 和 mtd 元素 -->
</mtable>
</math>
使用 columnalign 属性的值可以是以下之一:
<math>
<mtable>
<mtr>
<mtd columnalign="left">名称</mtd>
<mtd columnalign="right">价格</mtd>
</mtr>
<mtr>
<mtd columnalign="left">苹果</mtd>
<mtd columnalign="right">¥9.00</mtd>
</mtr>
<mtr>
<mtd columnalign="left">葡萄</mtd>
<mtd columnalign="right">¥6.00</mtd>
</mtr>
<mtr>
<mtd columnalign="left">香蕉</mtd>
<mtd columnalign="right">¥2.00</mtd>
</mtr>
</mtable>
</math>
该示例展示了如何使用 columnalign 属性将一列左对齐,另一列右对齐。结果如下所示:
| 名称 | 价格 | | :------: | :----: | | 苹果 | ¥9.00 | | 葡萄 | ¥6.00 | | 香蕉 | ¥2.00 |