I need to hide all borders of all panelgrids using primefaces. I have tried he following without effects:
table {
border: none;
}
table tr, table td {
border: none;
}
What can I do?
This solution affect only panelGrids but dataTables:
.ui-panelgrid > * > tr, .ui-panelgrid > * > tr > td.ui-panelgrid-cell {
border: none;
}
Thanks to the answer published by Kukeltje here: Remove all border on all panelgrids not on datatables