Tabel XSL-FO
- Halaman Sebelumnya Senarai XSLFO
- Halaman Berikutnya XSLFO dengan XSLT
XSL-FO 使用 <fo:table-and-caption> 元素来定义表格。
Tabel XSL-FO
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 使用 <fo:table-and-caption> 元素来定义表格。它包含一个 <fo:table> 以及一个可选的 <fo:caption> 元素。
Elemen <fo:table> mengandung:
- Pilihan <fo:table-column> elemen
- Pilihan <fo:table-header> elemen
- <fo:table-body> elemen
- Pilihan <fo:table-footer> elemen
setiap elemen di antara mereka mungkin memiliki satu atau lebih <fo:table-row> elemen, dan <fo:table-row> Juga akan ada satu atau lebih <fo:table-cell> Elemen:
<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">Mobil</fo:block> </fo:table-cell> <fo:table-cell> <fo:block font-weight="bold">Harga</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>
Output kode di atas:

- Halaman Sebelumnya Senarai XSLFO
- Halaman Berikutnya XSLFO dengan XSLT