XSL-FO Tutoriallogin
XSL-FO Tutorial
author:php.cn  update time:2022-04-21 16:29:33

XSL-FO table



XSL-FO uses the <fo:table-and-caption> element to define tables.


XSL-FO Tables (Tables)

The XSL-FO table model is not completely different from the HTML table model.

There are nine XSL-FO objects that can be used to create tables:

  • 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 usage<fo:table-and-caption> elements to define the table. It contains a <fo:table> and an optional <fo:caption> element. The

<fo:table> element contains optional <fo:table-column> elements, an optional <fo:table-header> element, a <fo:table-body> element, an optional <fo:table-footer> element. Each of these elements may have one or more <table-row> elements, with <fo:table-row> also having one or Multiple <fo:table-cell> elements:

<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>

The output of the above code is as follows:

##CarPriceVolvo$50000SAAB$48000

##