CSS 内部分页符:避免;不起作用
有人告诉我,CSS page-break-inside:avoid;
会阻止在两页之间打印元素。
在此说明上打印出来,到目前为止,这根本不适用于所有经过测试的浏览器。 CSS .instruction 已应用此功能,但可以跨页面打印。
示例: http://www.golfbrowser.com/A4/directions .php?start=PARIS&end=SL42ES
有什么想法吗?
I have been advised that said CSS page-break-inside:avoid;
would prevent elements being printed between 2 pages.
On this directions print out this simply does not work on all tested browsers so far. The CSS .instruction has this applied yet prints across pages.
Example: http://www.golfbrowser.com/A4/directions.php?start=PARIS&end=SL42ES
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
page-break-inside 属性仅受 Opera 支持。
http://www.w3schools.com/cssref/pr_print_pagebi.asp
The page-break-inside property is only supported by Opera.
http://www.w3schools.com/cssref/pr_print_pagebi.asp
只需添加打印样式表或使用媒体查询和中断 div,或者仅将样式添加到 html 中打印时需要制动的元素。
尝试在您认为需要打破的每个长内容块之后添加此内容:
至于您的 css,只需添加此内容:
此方法适用于大多数现代浏览器,包括 IE8+。
Just add a print stylesheet or use a media query and a breaking div or just add the style to the elements in your html that need braking when printing.
Try adding this after every long block of content that you think needs breaking:
And as for your css just add this:
This method works in most modern browsers, including IE8+.