凸顯表格同行同列(CSS)
2015-04-13 Simple CSS-Only Row and Column Highlighting | CSS-Tricks
2022-08-17 Highlight table columns with CSS :has() - Philip Renich
:has()
code:scss
table tbody>tr:hover {
background: #242424;
}
@for $i from 1 to 10 { // Total number (or more) columns in the table
table:has(tr > *:nth-child(#{$i}):hover) tr > *:nth-child(#{$i}) {
background: #242424;
}
}
JavaScript HTML Table Crosshairs