正如我在primefaces文檔中看到,Primefaces組件CSS定製
1) To change the font-size of PrimeFaces components globally, use the `.ui-widget` style class.
An example with 12px font size.
.ui-widget,
.ui-widget .ui-widget {
font-size: 12px !important;
}
我對此有2個問題:
爲什麼在上面的代碼
.ui-widget
書面三次?對於
tabView
的兩個不同實例,我想自定義其頭部背景顏色,但我找不到這樣做的方法。這甚至有可能嗎?