@itsalrightiguess
tr td:nth-child(1) {
width: 100px;
word-wrap: break-word;
border-bottom: 1px solid var(--font);
}
@media (prefers-color-scheme: light) {
:root {
--font: #444;
}
}
@media (prefers-color-scheme: dark) {
:root {
--font: #ddd;
}
}
Sorting tables is a little bit more difficult and requires the language made by the devil themself **JavaScript**; but this could work:
https://www.w3.org/WAI/ARIA/apg/patterns/table/examples/sortable-table/
@itsalrightiguess
the border-bottom part is so that you can tell the lines from one and another, if a cell has to much text inside and it has to use two lines.