多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# XSL-FO 表格 XSL-FO 使用 &lt;fo:table-and-caption&gt; 元素来定义表格。 ## XSL-FO 表格(Tables) XSL-FO 表格模型与 HTML 表格模型不是完全不同的。 有九种 XSL-FO 对象可用来创建表格: * fo:table-and-caption * fo:table * fo:table-caption * fo:table-column * fo:table-header * fo:table-footer * fo:table-body * fo:table-row * fo:table-cell XSL-FO 使用 **&lt;fo:table-and-caption&gt;** 元素来定义表格。它包含一个 &lt;**fo:table**&gt; 以及一个可选的 **&lt;fo:caption&gt;** 元素。 &lt;fo:table&gt; 元素包含可选的 **&lt;fo:table-column&gt;** 元素,一个可选的 **&lt;fo:table-header&gt;** 元素,一个 **&lt;fo:table-body&gt;** 元素,一个可选的 **&lt;fo:table-footer&gt;** 元素。这些元素中的每一个都可能拥有一个或多个 **&lt;fo:table-row&gt;** 元素,而 **&lt;fo:table-row&gt;** 同时会带有一个或多个 **&lt;fo:table-cell&gt;** 元素: ``` <fo:table-and-caption> <fo:table> <fo:table-column column-width="25mm"/> <fo:table-column column-width="25mm"/> <fo:table-header> <fo:table-row> <fo:table-cell> <fo:block font-weight="bold">Car</fo:block> </fo:table-cell> <fo:table-cell> <fo:block font-weight="bold">Price</fo:block> </fo:table-cell> </fo:table-row> </fo:table-header> <fo:table-body> <fo:table-row> <fo:table-cell> <fo:block>Volvo</fo:block> </fo:table-cell> <fo:table-cell> <fo:block>$50000</fo:block> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell> <fo:block>SAAB</fo:block> </fo:table-cell> <fo:table-cell> <fo:block>$48000</fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> </fo:table-and-caption> ``` 以上代码的输出如下所示: | Car | Price | | --- | --- | | Volvo | $50000 | | SAAB | $48000 |