當您進行選擇時,PrimeNG不允許我更改p-dataTable
bottom-border-color
。如何更改p-dataTable邊框底部的顏色?
我試圖從HTML中獲取元素,但它不起作用,並且他們網站上的文檔在樣式上很差。
我想在樣式表中進行此更改。
<p-dataTable #paperTable [custom-filters]="customFilters" id="tableId"
scrollHeight="80%"scrollable="true" [pageLinks]="3" [value]="dataGrid"
selectionMode="single" [paginator]="true" [rowsPerPageOptions]="[25,50,100]"
[rows]="25" [responsive]="true">
<p-column field="id" header="Id" [sortable]="true" [editable]="true" [hidden] = "true">
</p-column>
</p-dataTable>
好的。我把代碼 –