is it possible to color entire rows in an html table without being a \"break\" or gap for the border?
So far I have this table:
-
2021-01-18 06:02
Yeap, you can use one of two ways: either cellspacing or border-collapse:
table {
border-collapse:collapse;
}
..or: