Actionscript 3 和嵌套列表
我的 XML 中有以下代码(编辑:),我试图使用 htmlText 在 RichText 中显示它。
<ul>
<li>List Item 1
<ul>
<li>List Item 2</li>
</ul>
</li>
</ul>
不幸的是,Flash 似乎不支持嵌套列表,我得到的输出如下所示:
- List item 1
- List item 2
我希望第二个 ul 进一步缩进。
任何想法将不胜感激!
干杯
I have the following code in my XML (EDIT:) which I am trying to show in a RichText using htmlText.
<ul>
<li>List Item 1
<ul>
<li>List Item 2</li>
</ul>
</li>
</ul>
Unfortunately, Flash doesn't seem to support nested lists, and I am getting output which looks like this:
- List item 1
- List item 2
Where I want the second ul to be indented further.
Any ideas would be much appreciated!
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试过吗:
据我所知,嵌套的 UL 应该位于 LI 标签内
have you tried:
As far as I know, nested UL's should be within LI-tags
我通常通过使用特殊的 CSS 来“调试”我的输出。
如果您向某些项目添加类/样式会怎么样,例如。 make
在每个 UL 组周围构建一个漂亮的红色边框,看看是否得到一两个红色矩形。然后我们知道它是否检测/呈现 UL 编号。 2.
如果是这样,那么我将进行另一次 CSS 测试,看看是否可以在红色的里面得到一个绿色的:
如果有效,那么您可以尝试在第二个测试中添加一些 margin-left:20px 。
I usually "debug" my output by using special CSS for that kinda stuff.
What if you add a class/style to some of the items, eg. make
to build a nice red border around each UL group and see if you get one or two red rectangles. Then we know if it detects/renders UL no. 2.
If it does, then I would make another CSS test to see if I could get a green one inside the red one:
If that works, then you could try to add some margin-left:20px to the second test.