Ok here is the problem, I got a 2 column page and I need the background color of a fo:block-container to flow like this:
1. Left column: left side page to center page
2. Right column: center page to right side page
3. Top: where block-container starts
3. Bottom: bottom of the page (not where the fo:block-container ends) if I use height="100%" of the block-container it doesn't break with the column.
Sounds easy right?
This is a simple version of what I'm trying to accomplish, if this works it will also work where I need it.
<xsl:template match="p">
<fo:block-container background-color="green"
break-after="column">
<fo:block>
<xsl:apply-templates />
</fo:block>
</fo:block-container>
</xsl:template>
I'm using MSXSL 4.0 and XEP 4.10. Any help is highly appreciated.