我在 xul 中有这段代码:
<treechildren id = "mainTree_treechildren">
<treeitem container="true" open="true">
<treerow>
<treecell label="&tree.actions;" />
</treerow>
<treechildren id="tree_actions_treechildren" >
<treeitem container="true" open="true">
<treerow>
<treecell label="&tree.actions.warnings;" />
</treerow>
</treeitem>
</treechildren>
</treeitem>
</treechildren>
我有问题造型它。我需要为 treecell in 使用mainTree_treechildren
不同的文本颜色,在他的子 treechildren 中为 treecell 使用不同的文本颜色 id tree_actions_treechildren
。
目前我有这个CSS代码
#mainTree #mainTree_treechildren::-moz-tree-cell-text { color: #000000; }
#mainTree #tree_actions_treechildren::-moz-tree-cell-text { color: #FFFFFF; }
但它不起作用。我只为里面的每个元素获得黑色, mainTree_treechildren
包括tree_actions_treechildren
.