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.

I'm generating a table in XSL-FO and my content is a text that can be large. Is there any way to resize the column height? I´m using XSLT to generate the XSL-FO. I tried:

<fo:block-container font-family="Times New Roman"height="7.14mm" 
                    overflow="hidden"> 

but it doesn't work.

share|improve this question

1 Answer

Your example code is missing a space between the font family and height property. You should also put an fo:block inside your container. The following works for me and fixes the height of my block, hiding overflowing text:

...
<fo:table-cell>
<fo:block-container font-family="Times New Roman" height="7.14mm" 
                overflow="hidden"> 
    <fo:block>
        <xsl:value-of select="fieldWithLongText" />
    </fo:block>
</fo:block-container>
</fo:table-cell>
...
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.