F
Filament5mo ago
Dex

Tables rendering in print view

Is it possible to show table head on each page and format the styling so the table breaks correctly?
Solution:
It's not a fillament problem, just needed to use the right css: ```css thead { display: table-row-group;...
Jump to solution
1 Reply
Solution
Dex
Dex5mo ago
It's not a fillament problem, just needed to use the right css:
thead {
display: table-row-group;
}
thead {
display: table-row-group;
}