How to remove border from specific PrimeFaces p:panelGrid?

前端 未结 15 1767
再見小時候
再見小時候 2020-12-02 15:27

I have difficulty in removing border from a specific PrimeFaces .


    &l         


        
15条回答
  •  情深已故
    2020-12-02 16:04

    For the traditional as well as all the modern themes to have no border, apply the following;

    
        
            .ui-panelgrid, .ui-panelgrid td, .ui-panelgrid tr, .ui-panelgrid tbody tr td
            {
                border: none !important;
                border-style: none !important;
                border-width: 0px !important;
            }
        
    

提交回复
热议问题