How to highlight table row on hover using CSS only?

css, html

Solution

Yes, a row is possible but not a column.

tr:hover {
  background-color: lightyellow;
}

Problem

Is it possible to highlight table row on hover (something like this) using CSS only (without JavaScript)?

Original source