I'm dealing with a peculiar issue regarding the display of borders in Chrome when individual cells are hidden within an HTML table. The borders disappear, despite being defined for the row and table elements. Does anyone have experience with this specific behavior in Chrome? I've attempted various workarounds without success.
CSS:
.hide-dm, .hidden, .hide-training, table.hide-dm, table.hide-training, .hide-ca {
display: none;
}
.table {
border: 1px solid #ddd;
border-collapse: collapse;
}
.table > tbody > tr {
border-top: 1px solid #ddd;
}
Image Link
Another Image Link