Page break is not working with the tbody issue

前端 未结 3 1367
梦毁少年i
梦毁少年i 2020-12-31 12:36

I am generating a print report using table in twitter-bootstrap layout. The page has multiple tbody inside a table; While Printing the

3条回答
  •  时光取名叫无心
    2020-12-31 13:13

    This is possible by doing this:

    tbody {
        display: block;
        width: 100%;
        page-break-after: always;
        page-break-inside: avoid;
        page-break-before: avoid;
    }
    

提交回复
热议问题