Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
stanciuc
Contributor II
Contributor II

Modify the cell style with css

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. 

stanciuc_0-1691185890813.png

 

I'm stuck and I have no idea how to solve this. Could someone help? Thank you.

 

 

Labels (3)
1 Solution

Accepted Solutions
justISO
Specialist
Specialist

Hi, try to add !important:

border: 2px solid black !important;

View solution in original post

2 Replies
justISO
Specialist
Specialist

Hi, try to add !important:

border: 2px solid black !important;

stanciuc
Contributor II
Contributor II
Author

That worked! Thank you very much 🙂