<fo:table-caption> 对象包含了使用 <fo:table-and-caption> 对象定义的表格标题。
<fo:table-caption>
<!--
Contents:(block|block-container|
list-block)+
-->
</fo:table-caption>
属性 [A-J] | 属性 [K-Z] |
---|---|
azimuth | keep-together |
background-attachment | left |
background-color | padding-after |
background-image | padding-before |
background-repeat | padding-bottom |
background-position-horizontal | padding-end |
background-position-vertical | padding-left |
block-progression-dimension | padding-right |
border-after-color | padding-start |
border-after-style | padding-top |
border-after-width | pause-after |
border-before-color | pause-before |
border-before-style | pitch |
border-before-width | pitch-range |
border-bottom-color | play-during |
border-bottom-style | relative-position |
border-bottom-width | richness |
border-end-color | right |
border-end-style | role |
border-end-width | source-document |
border-left-color | speak |
border-left-style | speak-header |
border-left-width | speak-numeral |
border-right-color | speak-punctuation |
border-right-style | speech-rate |
border-right-width | stress |
border-start-color | top |
border-start-style | voice-family |
border-start-width | volume |
border-top-color | width |
border-top-style | |
border-top-width | |
bottom | |
cue-after | |
cue-before | |
elevation | |
height | |
id | |
inline-progression-dimension | |
intrusion-displace |
一个简单的表格:
<fo:table-and-caption>
<fo:table-caption>
<fo:block>Caption for this table</fo:block>
</fo:table-caption>
<fo:table>
<fo:table-column column-width="25mm"/>
<fo:table-column column-width="25mm"/>
<fo:table-header>
<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-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 |
XML Schema simpleType 元素 完整 XML Schema 参考手册定义和用法 simpleType 元素定义一个简单类型,规定与具有纯文本内容的元...
XML Schema field 元素 完整 XML Schema 参考手册定义和用法 field 元素规定 XPath 表达式,该表达式指定用来定义标识约束(uniq...
XML Schema key 元素 完整 XML Schema 参考手册定义和用法 key 元素指定属性或元素值(或一组值)必须是指定范围内的键。键的范...
XSLT xsl:otherwise 元素本节通过两个实例来为你讲解 XSLTxsl:otherwise元素。 完整的 XSLT 元素参考手册定义和用法 xsl:otherwi...
XSLT xsl:stylesheet 和 xsl:transform 元素在 XSLT 中,这两个元素拥有相同的意思,本节介绍了它们的属性与用法。 完整的 XSLT ...
XSLT element-available() 函数XSLTelement-available()函数返回一个布尔值,本节内容描述了该值的作用。 完整的 XSLT 函数参考...
XML DOM nodeType 属性 Element 对象定义和用法 nodeType 属性返回选定节点的节点类型。 语法elementNode.nodeType节点数量: 节...