« Return to Thread: Customizing header alignment with image

Re: Customizing header alignment with image

by spr :: Rate this Message:

Reply to Author | View in Thread

This didn;t work either:
  <xsl:attribute-set
    name    = "header.table.properties">
    <xsl:attribute
      name  = "table-layout">fixed</xsl:attribute>
    <xsl:attribute
      name  = "width">100%</xsl:attribute>
    <xsl:attribute
      name  = "background-color">yellow</xsl:attribute>
    <xsl:attribute
      name  = "alignment-adjust">alphabetic</xsl:attribute>
    <xsl:attribute
      name  = "display-align">after</xsl:attribute>
  </xsl:attribute-set>

Added attribute alignment-adjust in addition to display-align as well...
:( spr


There is no "vertical-align" property in XSL-FO.  You are looking for
display-align, whose enumerated values are:

 auto | before | center | after | inherit

You want "after" instead of bottom.  A good reference is necessary when
working with XSL-FO.  I use the original specification at:

http://www.w3.org/TR/xsl/

In particular, see Appendix D, Property index.

Bob Stayton
Sagehill Enterprises
DocBook Consulting
bobs@sagehill.net
~spr

 « Return to Thread: Customizing header alignment with image