codecamp

XSL-FO block-container 对象

XSL-FO block-container 对象

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

本节介绍的是 XSL-FO 中的 block-container 对象,你将了解该对象的定义、语法以及属性。


定义和用法

<fo:block-container> 对象用于创建一个块级的引用区域(reference-area) - 这往往包含不同的写入模式或要旋转内容的不同的引用方向。


语法

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

属性

属性 [A-C] 属性 [D-Z]
absolute-position display-align
background-attachment end-indent
background-color height
background-image id
background-repeat inline-progression-dimension
background-position-horizontal intrusion-displace
background-position-vertical keep-together
border-after-color keep-with-next
border-after-style keep-with-previous
border-after-width left
border-before-color margin-bottom
border-before-style margin-left
border-before-width margin-right
border-bottom-color margin-top
border-bottom-style overflow
border-bottom-width padding-after
border-end-color padding-before
border-end-style padding-bottom
border-end-width padding-end
border-left-color padding-left
border-left-style padding-right
border-left-width padding-start
border-right-color padding-top
border-right-style reference-orientation
border-right-width right
border-start-color space-after
border-start-style space-before
border-start-width span
border-top-color start-indent
border-top-style top
border-top-width width
bottom writing-mode
break-after z-index
break-before  
clip  


XSL-FO 参考手册 XSL-FO 参考手册
XSL-FO block 对象
XSL-FO character 对象
温馨提示
下载编程狮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; }