Remove all borders on a specific datatable

后端 未结 2 1173
日久生厌
日久生厌 2021-02-05 23:35

I need to hide all borders of one datatable, not all, using PrimeFaces. I have tried many things and no one has worked. Does anyone know how to do it?

I have applied the

2条回答
  •  不知归路
    2021-02-06 00:22

    with JSF 2, PrimeFaces 3.5

    
    

    css:

    .borderless .ui-datatable thead th,
    .borderless .ui-datatable tbody,
    .borderless .ui-datatable tbody tr,
    .borderless .ui-datatable tbody td {
        border: none;
        display: none;
    }
    

    for datatable header:

    .borderless .ui-state-default,
    .borderless .ui-widget-content .ui-state-default,
    .borderless .ui-widget-header .ui-state-default {
        border: none;
    }
    

提交回复
热议问题