0

我正在尝试将图像输出到 Flash ActionScript 2 动态文本框中。这可以通过放入<img ... />htmlText-code 来实现。但是我不能将图像居中在带有<center>...</center>标签的线上。

任何人都可以帮助我完成以下任务:

文字 文字 文字 文字 文字 文字

          IMG

文字 文字 文字 文字 文字 文字

在 ActionScript 2 的 htmlText 字段中。

4

1 回答 1

0

使用 div 的 id 包装器尝试此代码

<?xml version="1.0" encoding="utf-8"?>
<about title="Blog">
<title>
    <![CDATA[]]>
</title>
<thumb></thumb>
<text>
<div id="wrapper" style="width: 500px;">
<p>04/19-2012 - Test with images...</p>
<p>This image is not centered, as it should be...</p>
<p>
    <center>
        <img src="/uploads/dmbtest.gif" alt="" width="210" height="100" />
    </center>
</p>
<p>This is text after the image, which should be placed just below the image and not next to it :(</p>
<p>##################################################</p>
</div>
</text><optionalText><![CDATA[]]></optionalText></about>

它工作正常

于 2012-04-20T09:28:28.210 回答