|
Q. |
space-before specified for fo:block doesn't work. Only span="all" is specified for previous fo:block.
[No.2005080502]
|
| A. |
Please specify space-before.conditionality="retain".
<fo:block span="all">...</fo:block>
<fo:block space-before="10pt" space-before.conditionality="retain">...</fo:block>
The block with span="all" generates span-reference-area. It is an area different from the block before and behind it. And, because the initial value of space-before.conditionality is discard, space is not generated in the start of the reference-area.
|