codecamp

XSL-FO basic-link 对象

XSL-FO basic-link 对象

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

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


定义和用法

<fo:basic-link> 对象代表一个链接的起始资源。


语法

<fo:basic-link>
<!--
Contents:(#PCDATA|bidi-override|character|
external-graphic|instream-foreign-object|
inline|page-number|page-number-citation|
basic-link|multi-toggle|block|block-container|
table-and-caption|table|list-block)*
-->
</fo:basic-link> 

属性

属性 [A-I] 属性 [J-Z]
azimuth keep-together
alignment-adjust keep-with-next
alignment-baseline keep-with-previous
background-attachment left
background-color line-height
background-image margin-bottom
background-repeat margin-left
background-position-horizontal margin-right
background-position-vertical margin-top
baseline-shift padding-after
border-after-color padding-before
border-after-style padding-bottom
border-after-width padding-end
border-before-color padding-left
border-before-style padding-right
border-before-width padding-start
border-bottom-color padding-top
border-bottom-style pause-after
border-bottom-width pause-before
border-end-color pitch
border-end-style pitch-range
border-end-width play-during
border-left-color relative-position
border-left-style richness
border-left-width right
border-right-color role
border-right-style show-destination
border-right-width source-document
border-start-color space-end
border-start-style space-start
border-start-width speak
border-top-color speak-header
border-top-style speak-numeral
border-top-width speak-punctuation
bottom speech-rate
cue-after stress
cue-before target-presentation-context
destination-placement-offset target-processing-context
dominant-baseline target-stylesheet
elevation top
external-destination voice-family
id volume
indicate-destination  
internal-destination  


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