I want to implement a hover effect on each row within a nested grid that is displayed by columns instead of rows.
The layout appears as follows:
- Grid
- Column
- The column displays a grid with only rows
- Column
Check out this jsfiddle for the structure. I have managed to apply the hover effect on nested rows only. Although I am aware that I could rearrange the div structure, it is not feasible due to multiple dependencies on columns such as resizing and drag-and-drop functionality, which would compromise performance if rendered in row format – something I definitely want to avoid.
UPDATE
Essentially, when hovering over a div element that is a child of the grid-wrapper__nested
, I aim to trigger the hover effect on every div within the same row in every grid-wrapper__nested
.
For a visual aid, refer to this illustration: https://i.sstatic.net/FUsnA.png