Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] Table Row Hover with Rowspan Reply To: [Solved] Table Row Hover with Rowspan

#156592
paulofsis
Participant

I did as follows:

body { padding: 1em; }

table { width: 100%; border-collapse: collapse; }

td, th { padding: .25em; border: 1px solid black; }

tbody:hover, tr.hover, th.hover, td.hover, tr.hoverable:hover { background-color: red; }

Thank You.

Paulo