如何在xhtmlrenderer(飞碟)R8中使用CSS3孤儿和寡妇属性?

发布于 2024-10-16 05:20:39 字数 399 浏览 0 评论 0原文

我在这个错误修复描述中读到xhtmlrenderer应该支持“孤儿”和“寡妇”自版本 R5 以来 CSS3 的属性。 用的是R8,好像不行。

div.textContent {
    orphans: 5;
    widows: 3;
}

但它看起来像这样:

Wrong paragraph Breaking

段落(div 块元素)被分成两部分,尽管它不能。

有这方面的想法或经验吗?谢谢!

I read in this bugfix description that xhtmlrenderer should support the "orphans" and "widows" properties of CSS3 since Version R5.
Using R8, it seems not to work.

div.textContent {
    orphans: 5;
    widows: 3;
}

But it looks like this:

Wrong paragraph breaking

The paragraph (a div block element) is broken into two pieces although it must not.

Any ideas or experience with this? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆凄美了谁 2024-10-23 05:20:39

这是飞碟 (xhtmlrenderer) 中的一个错误。 BlockBox.java 中有一个 satisfyWidowsAndOrphans 函数,但只有在调用 isNeedPageClear 后才会调用。我已在问题跟踪器中创建了一个问题

请注意,page-break-inside: escape; css 规则有效。

It is a bug in the Flying Saucer (xhtmlrenderer). There is a satisfyWidowsAndOrphans function in BlockBox.java, but it is called only after isNeedPageClear is called. I've created an issue in the issue tracker.

Note that the page-break-inside: avoid; css rule works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文