I have an HTML table element and I'm trying to add a marker between the columns, so I used these css properties:
table { border-collapse: separate; border-spacing: 36px 0px; }
Now I want to add border-bottom to the whole line, both in the header and in each tr in the body, but the border is not displayed. I used:
tr { border-bottom: 1px solid blue; }
it appears only if I use:
table { border-collapse: collapse; }
but then I will not have a margin between the columns.
I added here DEMO here .
source share