“page-break-inside: avoid ”- does not work

China☆狼群 提交于 2019-12-29 08:46:10

问题


I am making a print css... And i want to print certain blocks as a whole, therefore I used 'page-break-inside: avoid'. But this doesn't seem to work.

I have been searching desperatly to find a solution... I use Google Chrome

    .print-block
    {
        display: block;
        page-break-inside: avoid !important;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 1px dashed black;
    }

This is the CSS, I am using...


回答1:


Only Opera fully supports page-break-inside.

References:

General

Chrome specific

Firefox specific



来源:https://stackoverflow.com/questions/6996410/page-break-inside-avoid-does-not-work

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!