如何在xhtmlrenderer(飞碟)R8中使用CSS3孤儿和寡妇属性?
我在这个错误修复描述中读到xhtmlrenderer应该支持“孤儿”和“寡妇”自版本 R5 以来 CSS3 的属性。 用的是R8,好像不行。
div.textContent {
orphans: 5;
widows: 3;
}
但它看起来像这样:
段落(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:
The paragraph (a div block element) is broken into two pieces although it must not.
Any ideas or experience with this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是飞碟 (xhtmlrenderer) 中的一个错误。
BlockBox.java
中有一个satisfyWidowsAndOrphans
函数,但只有在调用isNeedPageClear
后才会调用。我已在问题跟踪器中创建了一个问题。请注意,
page-break-inside: escape;
css 规则有效。It is a bug in the Flying Saucer (xhtmlrenderer). There is a
satisfyWidowsAndOrphans
function inBlockBox.java
, but it is called only afterisNeedPageClear
is called. I've created an issue in the issue tracker.Note that the
page-break-inside: avoid;
css rule works.