Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'm trying to change the cell style of a table with css but I'm missing something.
My goal is to change the cell boarder of each cell in a table to be black instead of transparent.
The code I'm using is :
.qv-st-data-cell,
.qv-st-header-cell
{
border: 2px solid black;
}
When I add the total of the columns at the bottom of the table it's missing the bottom line.
I'm stuck and I have no idea how to solve this. Could someone help? Thank you.
Hi, try to add !important:
border: 2px solid black !important;
That worked! Thank you very much 🙂