xsl-list
[Top] [All Lists]

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

2003-01-09 09:45:53
  </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>

Actually, both of us were wrong.

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


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



<Prev in Thread] Current Thread [Next in Thread>
  • Re: How to shift an image to the bottom of its current page, David Tolpin <=