W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
本節(jié)將為你介紹 XSL-FO 表格。
XSL-FO 使用 <fo:table-and-caption> 元素來定義表格。
XSL-FO 表格模型與 HTML 表格模型不是完全不同的。
有九種 XSL-FO 對象可用來創(chuàng)建表格:
XSL-FO 使用 <fo:table-and-caption> 元素來定義表格。它包含一個 <fo:table> 以及一個可選的 <fo:caption> 元素。
<fo:table> 元素包含可選的 <fo:table-column> 元素,一個可選的 <fo:table-header> 元素,一個 <fo:table-body> 元素,一個可選的 <fo:table-footer> 元素。這些元素中的每一個都可能擁有一個或多個 <fo:table-row> 元素,而 <fo:table-row> 同時會帶有一個或多個 <fo:table-cell> 元素:
<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 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: