3
Views
1
Comments
Visible table borders?
Question
Is there an easy way to make table borders (lines) visible?
By default they are invisible...
2024-06-12 10-07-10
Daniel Martins
Hi Claus,

You need to change the your eSpace or WebScreen CSS

You can add the following CSS:


td, th {
border: solid 1px black;
}

the previous CSS will add table borders to all tables.

Please check the following link to see how to add that style to a specific table class:

https://jsfiddle.net/wLdLg/3/

Hope it helps you!

Kind regards.

Daniel Martins.
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.