codecamp

XSL-FO static-content 对象

XSL-FO static-content 对象

XSL-FO 参考手册 XSL-FO 参考手册

XSL-FO static-content 对象用于存放静态内容。


定义和用法

<fo:static-content> 对象包含了静态内容(如:页眉和页脚),该静态内容将在多个页面中重复调用。

<fo:static-content> 对象有一个 "flow-name" 属性,该属性定义了 <fo:static-content> 对象的内容走向。


语法

<fo:static-content>
<!--
Contents:(block|block-container|
table-and-caption|table|
list-block)+
-->
</fo:static-content>

属性

属性
flow-name


XSL-FO 参考手册 XSL-FO 参考手册
XSL-FO single-page-master-reference 对象
XSL-FO table 对象
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录
XSL-FO 参考手册

XSL-FO 对象列表

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }