css 显示背景图片HTML2PDF

plicqrtu  于 12个月前  发布在  其他
关注(0)|答案(1)|浏览(98)

我想使用在线工具或html2pdf库将html文件转换为pdf格式。但它转换所有页面,但不转换背景图像。

<STYLE type="text/css">    
    body {margin-top: 0px;margin-left: 0px;
        background-image: url(http://IP/check/form/image.jpg);
     }
</style>
<html>
<body>
    <div>
        <h1>Hello world!</h1>
        <p><a href="http://www.w3schools.com">Visit W3Schools.com!</a></p>
    </div>
</body>
</html>

字符串

ijxebb2r

ijxebb2r1#

将body标签背景更改为div标签背景URL解决了这个问题。

<STYLE type="text/css">    
    #divid{margin-top: 0px;margin-left: 0px;
        background-image: url(http://****.jpg);
     }
</style>
<html>
<body>
    <div id="divid">
        <h1>Hello world!</h1>
        <p><a href="http://www.w3schools.com">Visit W3Schools.com!</a></p>
    </div>
</body>
</html>

字符串

相关问题