xsl-list
[Top] [All Lists]

Re: How to shift an image to the bottom of its current page ?

2003-01-09 09:25:06
David Tolpin wrote:

  <fo:block>
    <fo:footnote>
      <fo:footnote-body>
        <fo:external-graphic src="url(foo.jpg)"/>
      </fo:footnote-body>
    </fo:footnote>
  </fo:block>

Note that the spec requires fo:inline as the first child of fo:footnote, so the most correct markup is:

     <fo:footnote>
       <fo:footnote-body>
         <fo:inline/>
         <fo:external-graphic src="url(foo.jpg)"/>
       </fo:footnote-body>
     </fo:footnote>

Cheers,

E.
--
W. Eliot Kimber, eliot(_at_)isogen(_dot_)com
Consultant, ISOGEN International

1016 La Posada Dr., Suite 240
Austin, TX  78752 Phone: 512.656.4139


XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>