codecamp

XSL-FO inline-container 对象

XSL-FO inline-container 对象

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

本节介绍关于 XSL-FO inline-container 对象的定义、语法以及属性。


定义和用法

<fo:inline-container> 对象生成一个内联参考域(reference-area)。通常情况下,该区域包含了不同写入模式的文本块。


语法

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

属性

属性 [A-B] 属性 [C-Z]
alignment-adjust clip
alignment-baseline display-align
background-attachment dominant-baseline
background-color height
background-image id
background-repeat inline-progression-dimension
background-position-horizontal keep-together
background-position-vertical keep-with-next
baseline-shift keep-with-previous
block-progression-dimension left
border-after-color line-height
border-after-style margin-bottom
border-after-width margin-left
border-before-color margin-right
border-before-style margin-top
border-before-width overflow
border-bottom-color padding-after
border-bottom-style padding-before
border-bottom-width padding-bottom
border-end-color padding-end
border-end-style padding-left
border-end-width padding-right
border-left-color padding-start
border-left-style padding-top
border-left-width reference-orientation
border-right-color relative-position
border-right-style right
border-right-width space-end
border-start-color space-start
border-start-style top
border-start-width width
border-top-color writing-mode
border-top-style  
border-top-width  
bottom  


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