Author: | cityssm |
---|---|
Views Total: | 94 views |
Official Page: | Go to website |
Last Update: | March 22, 2023 |
License: | MIT |
Preview:

Description:
A Pure CSS extension that helps Bulma developers create tables with sticky headers, footers, and/or columns to make your large datasets more readable and accessible.
How to use it:
1. Ensure that your project includes the Bulma CSS framework, as Bulma Sticky Table relies on it for styling.
<link rel="stylesheet" href="/path/to/cdn/bulma.min.css"> <link rel="stylesheet" href="/path/to/bulma-with-sticky-table.css">
2. Add the following CSS classes to the HTML table.
- has-sticky-header: Make table header sticky
- has-sticky-footer: Make table footer sticky
- has-sticky-column: Make the first column sticky
<table class="table has-sticky-header has-sticky-footer has-sticky-column"> ... </table>