我忘记了XSL格式化对象的布局模型 我积极地使用它但我现在不记得了。
以下代码错误
<fo:block background-color="gray" text-align="right">
<fo:table background-color="yellow">
<fo:table-body>
<fo:table-row>
<fo:table-cell><fo:block>99999999999</fo:block></fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
如何将我的桌子对齐或居中?
答案 0 :(得分:2)
嗯..我忘记将fo:table
包裹在<fo:table-and-caption>
内
此代码是一个工作示例
<fo:block background-color="green" text-align="right">
<fo:table-and-caption>
<fo:table background-color="yellow">
<fo:table-body>
<fo:table-row>
<fo:table-cell><fo:block>99999999999</fo:block></fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:table-and-caption>
</fo:block>