We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is possible to freeze the n first columns?
The text was updated successfully, but these errors were encountered:
@raghina not at the moment, but I think it would be great to be able to freeze the first n rows or columns.
Sorry, something went wrong.
You can do this with CSS:
table tr:nth-child(4) td:first-of-type { position: sticky; left: 0; top: 0; z-index: 1; } table tr:not(:nth-child(5)) td:nth-child(1) { background: #fff; position: sticky; left: 0; } table tr:nth-child(4) td:not(:first-child) { position: sticky; top: 0; } table tr:nth-child(5) { position: sticky; top: 24px; }
No branches or pull requests
Is possible to freeze the n first columns?
The text was updated successfully, but these errors were encountered: