我知道有一个选项可以将图像设置为树背景,并在需要时重复它。但我想在树背景中绘制水平线,使其看起来像一张桌子。水平线应该适合树的整个宽度。我怎样才能在GWT中做到这一点?。请帮助。
答案 0 :(得分:1)
这应该有效。将此类添加到TreeItem:
.gwt-Tree table {
table-layout: fixed;
width: 100%;
}
.gwt-Tree table td:first-child {
width: 18px;
}
.myTreeItem {
margin-left: 0 !important;
padding: 3px 3px 3px 39px;
}
.myTreeItem, .myTreeItem > table {
border-bottom: solid 1px #464646;
}