Page 1 of 1

How to define or change table borders with css

Posted: Tue Jan 30, 2018 12:21 pm
by Nicky
Where in the stylesheet can I put a code to change the 'standard' 3D-like border to a single flat border in a table? I think it must be something like "collapse-border" but how and where exactly put that code in the stylesheet of a template.

Thanks in advance.

Re: How to define or change table borders with css

Posted: Tue Jan 30, 2018 1:17 pm
by lck
Always depends on what your current code looks like.

Code: Select all

table {
    border-collapse: collapse;
}
See basic Table examples.