Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In xsl:fo i'm trying to create a header that contains the company name and the print date. The company name should be aligned to the left and the print date should be aligned to the right. Somhow i can not get this to work.

<fo:static-content flow-name="xsl-region-before">
  <fo:block text-align="start" position="absolute" top="0">
    initech
  </fo:block>
  <fo:block text-align="end" position="absolute" top="0">
    Printdate 11-04-2011
  </fo:block>           
</fo:static-content>

Could anyone give me some tips on this one.

share|improve this question

1 Answer

Here is one way to do it:

<fo:static-content flow-name="xsl-region-before">
  <fo:block text-align-last="justify">
initech<fo:leader/>Printdate 11-04-2011
  </fo:block>           
</fo:static-content>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.