<@U0F3291QE> I used this ``` .column-header{ ...
# tornadofx
a
@edvin I used this
Copy code
.column-header{
    visibility: hidden;
}
And when I used this style on TreeTableView, the treetableview itself is getting hidden I then used
Copy code
.column-header-background {
    visibility: hidden;
}
Which is now hiding every treetableview's header because the css class name is a global css class of the treetableview. How can i use this css specifically at one treetableview?