.webgrid-table td, th {
border: 1px solid #98bf21;
padding: 3px 7px 2px;
}
I am facing an issue where the style defined above is being applied to all td
elements. However, I want to exclude the styling for a td
that is within a tr
element with the class webgrid-footer
.
To achieve this exclusion, I attempted to modify the CSS as follows:
.webgrid-footer td {
padding: 0 0 0;
}
Unfortunately, this solution did not work as expected. Here is a link to the problematic code on JSFiddle: https://jsfiddle.net/tridip/pta7Ln59/
You can also refer to the image linked below to see the desired outcome:
https://i.sstatic.net/obQ18.pngIn the pager component, there is extra space that I would like to remove. Can you please suggest what changes need to be made in the CSS to achieve this? Thank you.