How to remove border from specific PrimeFaces p:panelGrid?
The border is been set on the generated tr and td elements, not on the table. So, this should do: .companyHeaderGrid.ui-panelgrid>*>tr, .companyHeaderGrid.ui-panelgrid .ui-panelgrid-cell { border: none; } How I found it? Just check the generated HTML output and all CSS style rules in the webdeveloper toolset of Chrome (rightclick, Inspect Element or press F12). Firebug … Read more