I seem to be seeing examples, where people answer to questions how to get some specific behavior from components by adding CSS code, however nobody seems to explain how to use that CSS code to connect it to Java components...
.v-table-body{
overflow: hidden !important;
}
How do I use for instance this code on my table that I create?
Table table = new Table(caption);
table.addContainerProperty("Visit ID", Long.class, null);