list-style-type的问题

时间:2011-04-19 08:41:26

标签: sass sencha-touch

我有一个定义list-style-type的scss文件。该文件的摘录如下:

$orange: #c53830;

...

ul.list1 {
    list-style-type:circle;
    color:$orange;
}

在我的javascript中我有

    html: '<ul class="list1"><li>some words</li><li>some more words</li></ul>'

正在应用颜色,但我没有得到项目符号列表。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

sencha-touch.css指定:

li
{
  list-style:none;
}

尝试将以下内容添加到您自己的scss中:

list-style:circle;

你还有模板css之前的链接sencha-touch.css,所以你正确地覆盖它吗?