keep-together: always; property in CSS Overflowing

0
Hi, I have some content as header and followed with my Template Grid(data). I want to keep both these together in a Table. I used keep-together: always; property to Table. Its actually making cell content to overflow and also number of rows are going out of PDF page. I was looking around for this solution. Is there any CSS which fit for my requirement as both should achive. It should give keep both contents together also the content which are going out of PDF page should be displayed on second page of PDF. Thanks in advance!
asked
1 answers
1

Try:keep-together.within-column: always instead of: keep-togerther:always

This should do what you want. See also http://stackoverflow.com/questions/13932261/is-there-an-alternative-to-keep-together-always-on-table-row for further explanation (in the answer)

answered