page-break-inside doesn't work in Chrome?

前端 未结 11 1426
夕颜
夕颜 2020-12-05 17:32

I have a bunch of paragraphs on a page:

...

...

...

The CSS rule for those p

11条回答
  •  囚心锁ツ
    2020-12-05 17:40

    What worked for me (in both FFox & Chrome, that is)

    .container {
      column-gap: .4em;
      columns: 3;
      padding: .4em;
    }
    
    .contained {
      page-break-before: avoid;
      page-break-inside: avoid;
      page-break-after: always;
    }
    

    And that's it ; I didn't need position.

提交回复
热议问题