XSL-FO Table

XSL-FO 使用 元素来定义表格。

XSL-FO Table

XSL-FO 表格模型与 HTML 表格模型是非常不同的。

akwai daga takwasan XSL-FO ɗa ɗaɗa ɗa ɗaɗa ɗa ɗaɗa tabular:

  • 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 ɗa ɗaɗa ɗa ɗaɗa <fo:table-and-caption> ta define tabular. Ɗa ɗaya shi <fo:table> waɗa dake ɗaɗa <fo:caption> 元素。

<fo:table> Element includes:

  • Optional <fo:table-column> elements
  • Optional <fo:table-header> elements
  • <fo:table-body> elements
  • Optional <fo:table-footer> elements

each of these elements may have one or more <fo:table-row> elements, and <fo:table-row> Also with one or more <fo:table-cell> Element:

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