
Contributor II
2023-08-04
05:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
I'm stuck and I have no idea how to solve this. Could someone help? Thank you.
876 Views
1 Solution
Accepted Solutions

Specialist
2023-08-08
03:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
834 Views
2 Replies

Specialist
2023-08-08
03:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, try to add !important:
border: 2px solid black !important;
835 Views

Contributor II
2023-08-08
08:33 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
That worked! Thank you very much 🙂
826 Views
