gpt4 book ai didi

html - 如何在 HTML CSS 中打印 60 度旋转水印

转载 作者:行者123 更新时间:2023-11-28 05:19:53 25 4
gpt4 key购买 nike

我有一个 A4 大小的 HTML 页面。我使用 CSS 将其设为 A4 尺寸。现在我想在那个页面上以 60 度打印水印。但我找不到任何解决方案。我在谷歌上搜索了很多次但都失败了。谁能帮帮我?

这是该页面的 CSS

 <style>
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #F0F0F0;
font: 12pt "Times New Roman";
}
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
.page {
width: 210mm;
min-height: 297mm;
padding: 08mm;
margin: 2mm auto;
border: 1px #D3D3D3 solid;
border-radius: 5px;
background: white;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);

}
.subpage {
padding: 1cm;
border: 5px solid;
height: 257mm;
outline: 2cm #FFEAEA solid;
}

@page {
size: A4;
margin: 0 0em 0em 0em;
}
@media print {
html, body {
width: 210mm;
height: 297mm;
-webkit-print-color-adjust: exact
}
.page {
margin: 0;
border: initial;
border-radius: initial;
width: initial;
min-height: initial;
box-shadow: initial;
background: initial;
page-break-after: always;
}
</style>

最佳答案

使用不透明度和固定位置。

.for-watermark-div
{
position: fixed;
bottom: 257px;
right: 100px;
opacity: 0.5;
z-index: 99;
color: hotpink;
/* Rotate div */
-ms-transform: rotate(60deg); /* IE 9 */
-webkit-transform: rotate(60deg); /* Chrome, Safari, Opera */
transform: rotate(60deg);
pointer-events: none; /*edited: this will prevent ignoring background links*/
}

关于html - 如何在 HTML CSS 中打印 60 度旋转水印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40130266/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com