问题标签 [css-paged-media]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
css-paged-media - CSS3 paged media mode: Any way to prevent @top_right pdfreactor logo being inserted?
With any attempt to use paged media mode, with for example a style sheet containing :
Note the above does not contain ANY reference to embedded images, but when run through PDFreactor the resulting PDF
contains a small round radio-active graphic with the word "PDF" overlaid on top , in the @top-right content, after my
"$date : $initials" content.
I think this is "pdfreactor.svg" ?
So is it not possible to remove the logo ?
Moving all files named pdfreactor.svg under the PDFreactor/ installation directory to other locations did not help.
I am using the free-for-personal-non-commercial license which I obtained by email from Real Objects ,NOT the evaluation license .
Are personal non-commercial users not allowed to disable the inclusion of this logo in the page header block ?
Has anyone succeeded in disabling the inclusion of the logo image - if so, how ?
Also, does anyone know why the chapter & section counters are always displayed as 0 in the page header of the above document?
The Java I am using is:
css - CSS分页媒体:最后一页选择器
我需要知道是否可以使用:last
选择器修改最后一页的内容。
我不确定它是否存在,我看到它在其他 stackoverflow 答案中使用,如下所示:Footer on last print page。但是我在文档中找不到它,当我尝试使用它时它不起作用。
我正在尝试清除最后一页页脚的内容,如下所示:
当我将它与:first
选择器一起使用时它可以工作。我怎样才能得到最后一页的效果?
我正在使用 Weasyprint 打印 PDF 文件。
html - 使用 window.print() 打印 div 时,@page{ } 中的边距未应用
HTML:
CSS:
当我单击按钮打印预览打开但不应用边距。
html - 仅在第一页上打印网站徽标(@media print)
我需要创建网站的打印版本,正如我在标题中提到的,我需要在第一页上显示网站徽标。例如,如果我打印主页,我得到 5 页,那么徽标应该只显示在第一页上。
@media print 可以吗?
到目前为止我已经尝试过但不起作用
css - 打印页面使用错误的媒体查询断点
我正在处理一个“打印预览”页面,我们正在呈现一个单独的 HTML 文档,以便用户可以打印它。
我遇到了打印到 8.5 x 11 的问题,它采用 <800px 的媒体查询视口样式。
我可以通过打印到使用桌面(默认)CSS 的小报表来“修复”这个问题。
我的媒体查询和 CSS 有点生疏,但是……浏览器的打印过程会适应特定的媒体查询大小是标准的吗?
有一个简单的解决方法吗?我可以覆盖所有的媒体查询 CSS,但鉴于这是一个大型企业版臃肿软件,这是一个挑战,只会让我们的 CSS 变得臃肿。有没有办法说“打印时,以桌面宽度打印......”
css - 使用带有 @page 规则的自定义属性
我正在尝试将 css 自定义属性与 @page 规则一起使用,但它似乎不起作用。这是有道理的,因为 css 变量级联并且:root
选择器和 @page 规则没有子/父关系。
下面是我想做的一个典型例子:
有什么方法可以将变量与@page 规则一起使用?
html - Javascript 在不同页面上打印多个 div
我需要在 A4 纸上打印,每张纸都<div>
从不同的页面开始
例如,<div id="1">
内容可能是 2 或 3 页,但<div id="2">
仍需要从新页面开始。
html - 以`:right` CSS页面规则开始第一页?
我已经定义了这样@page :left
的:right
边距:
当我使用 Chrome 打印时,它似乎总是以:left
规则开始文档。
有没有办法让打印从:right
规则开始?
我对 Chrome 的解决方案最感兴趣,但我也对 Prince 的解决方案感兴趣。
html - 在 Google Chrome 中打印表格时,内容与标题重叠
打印带有 HTML 代码的表格时,我在使用 Google Chrome 浏览器时遇到问题。我需要创建一个带有标题的文档,为此,我使用了一个带有 thead 元素的表格,因此浏览器将为打印文档上的每一页复制它。
问题是当我在元素内有分页符时,内容与标题重叠<tr>
。跟随问题的打印和代码的要点。