I\'m using PrimeFaces 3.0-M3 and I have a with two columns in it. I want the first column to be fixed at a width of 20px. The other column c
In PrimeFaces 3.0, that style get applied on the generated inner with In PrimeFaces 3.5 and above, it should work exactly the way you coded and expected. as you (and I) would expect. The following example should work out for you:
.myTable td:nth-child(1) {
width: 20px;
}