I have problem with "page-break-after: always;"

Y

Ye

When I use it in CSS file, some part of the content on the page before the
break goes to the bottom of the page. Do you know why?

Ye
 
Y

Ye

sorry, I don't have URL. The page looks like this:

********************************
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* Total:30 *
* *
********************************

"Total:30" is supposed to appear at the top of the page. But I don't know
why it goes to the bottom.


Ye Li
 
Y

Ye

My css is:
..PrintPageBreak{
page-break-before: always;
}

My xsl is:
<xsl:for-each test="....">
<tr height="30px" class="InvisibleToScreen">
<td colspan="4">
<xsl:attribute name="class">PrintPageBreak</xsl:attribute>
</td>
</tr>
</xsl>


Thanks.

Ye
 
Y

Ye

Sorry,

it should be,

My css is:
..PrintPageBreak{
page-break-before: always;
}

My xsl is:
<xsl:for-each test="....">
<tr height="30px" class="InvisibleToScreen">
<td colspan="4">
<xsl:attribute name="class">PrintPageBreak</xsl:attribute>
</td>
</tr>
....
....
....
</xsl>


Thanks.

Ye

================================
 
M

Murray

Precious little to go on there - sorry.

I just couldn't say without looking at the actual page after it has been
dynamically written.
 
Top