henrybuilt / react-sticky-table

Responsive and dynamically-sized fixed headers and columns for tables
https://henrybuilt.github.io/react-sticky-table/
MIT License
214 stars 57 forks source link

Can't apply styling to rows #111

Closed ttiras closed 4 years ago

ttiras commented 4 years ago

It is not possible to apply styling to rows. How can i implement bg-color on hover?

maxhudson commented 4 years ago

@ttiras What's the CSS you're trying to use for the row?

Generally you'd go: .sticky-table-row:hover .sticky-table-cell { background-color: black }

Hover styles on display: table-row are inconsistent in browsers

ttiras commented 4 years ago

Hover styles on display: table-row are inconsistent in browsers

this is the knowledge i was looking for.

thank you.