phphe / virtual-list

Vue virtual list. Also supports horizontal list, virtual table, React.
https://virtual-list.phphe.com/
17 stars 2 forks source link

Sticky Header #3

Open benjamincoffin opened 1 year ago

benjamincoffin commented 1 year ago

Is it possible to have an option for the table header to be sticky, so it's always visible when a user scrolls? It's ignoring position: sticky; top: 0; and position: fixed; prevents the table header from scrolling horizontally with tables that are wider than the viewport. Thank you for your time.

phphe commented 1 year ago

It is difficult to use sticky on native table. You may need use div instead of it.

benjamincoffin commented 1 year ago

Ok, thanks.