Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Vaadin 应用程序中的某个布局上附加了 3 个表格组件。我想为我的 3 张桌子设置不同的背景颜色。我的意思是说table1有蓝色,table2有黄色,table3有红色。我怎样才能在 vaadin 中实现这样的目标。谢谢!
我通过以下方式完成了它:
将以下 CSS 添加到您的 styles.css 文件中
.classname .v-table-body{ yourstyle goes here }
设置表格的样式如下:
table1.setStyleName("类名");
它将仅应用 table1 的样式