是否可以将CSS样式应用于构造为树的现有HTML表?
例如,在Firefox中,“书签库”表构建为树。是否可以将CSS样式应用于其中一列(而不是其他列)?
使用treechildren
将样式应用于整行是很简单的。但是如何将样式应用于一列呢?
答案 0 :(得分:0)
CSS nth孩子应该帮助您解决问题。
https://developer.mozilla.org/en-US/docs/Web/CSS/%3Anth-child
这里有一个简单的例子:https://jsfiddle.net/0gztemg6/
以上示例中的CSS:
C:\path\to\PortableGit-2.4.6-5th-release-candidate-64-bit\bin
答案 1 :(得分:0)
使用treechildren:-moz-tree-cell-text(*property*)
,将属性替换为相应的属性名称。
例如:
#placeContent > treechildren:-moz-tree-cell-text(placesContentTags) {
color: blue !important;
}
将标签列的颜色设置为蓝色。
完美无缺。