Table with spacing to have a solid background all the way through [duplicate]

StackOverflow https://stackoverflow.com/questions/21213107

  •  29-09-2022
  •  | 
  •  

Вопрос

I have alternating background colors however they have breaks in-between them due to the large spacing. I want the color to run through as though there was no spacing, so a solid bar all the way through.

tr:nth-child(even) {
    background-color: #FFFFFF;
}
tr:nth-child(odd) {
    background-color: #000000;
}
Это было полезно?

Решение

table{
    border-collapse: collapse; /* add this one */
}

Demo with issue
Demo without issue

Другие советы

In the table tag itself, use cellspacing="0" and cellpadding="0" to achieve the same effect but for browsers that don't (or poorly) support the border-collapse attribute.

You may also want to restore the lost space without creating gaps:

td{padding:2px 4px}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top