Actionscript 3 和嵌套列表

发布于 2024-08-26 22:05:58 字数 360 浏览 7 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深海不蓝 2024-09-02 22:05:58

你尝试过吗:

<ul>
   <li>List Item 1
      <ul>
         <li>List Item 2</li>
      </ul>
   </li>
</ul>

据我所知,嵌套的 UL 应该位于 LI 标签内

have you tried:

<ul>
   <li>List Item 1
      <ul>
         <li>List Item 2</li>
      </ul>
   </li>
</ul>

As far as I know, nested UL's should be within LI-tags

那小子欠揍 2024-09-02 22:05:58

我通常通过使用特殊的 CSS 来“调试”我的输出。

如果您向某些项目添加类/样式会怎么样,例如。 make

ul {border:solid 1px #f00;} 

在每个 UL 组周围构建一个漂亮的红色边框,看看是否得到一两个红色矩形。然后我们知道它是否检测/呈现 UL 编号。 2.

如果是这样,那么我将进行另一次 CSS 测试,看看是否可以在红色的里面得到一个绿色的:

ul li ul {border:solid 1px #0f0;} 

如果有效,那么您可以尝试在第二个测试中添加一些 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

ul {border:solid 1px #f00;} 

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:

ul li ul {border:solid 1px #0f0;} 

If that works, then you could try to add some margin-left:20px to the second test.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文