显示背景图片HTML2PDF

Muh*_*zam 2 html css html2pdf

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

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

Muh*_*zam 6

将正文标记背景更改为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>
Run Code Online (Sandbox Code Playgroud)