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

时间:2016-10-19 11:32:42

标签: html css

我有一个A4大小的HTML页面。我用CSS来制作A4尺寸。现在我想在60度的页面上打印水印。但我找不到任何解决方案。我在google上搜索很多次但是失败了。有人可以帮帮我吗?

这是该页面的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>

1 个答案:

答案 0 :(得分:4)

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

.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);
}