我想在照片旁边放一些文字,我希望这些文字在图像下方流动,如下所示。我使用 FOP 1.0,所以我不能真正使用 float 元素
我尝试使用块容器的绝对定位来做到这一点,但随后文本也位于图像下方。
<fo:block >
<xsl:apply-templates select="//StringValue[@name='myString']/Value/node()" />
<fo:block-container width="140px" wrap-option="wrap" >
<fo:block >
<fo:external-graphic content-height="3.4cm"
content-width="5.3cm" scaling="scale-to-fit" src="{//StringValue[@name = 'photo']/Value}" />
</fo:block>
</fo:block-container>
</fo:block>
任何线索?