Laravel 5背景图像没有显示在DOMPDF上?

时间:2017-04-12 04:00:10

标签: php css laravel

这是我的css代码:

#header {
    background-image: url(../assets_frontend/images/pinpdfheader.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size:contain;
    height:150px;
}

我尝试将我的html文件转换为DOMPDF但不知何故我的背景图像没有显示,如何在DOMPDF上使用背景图像网址?

1 个答案:

答案 0 :(得分:0)

.img-container {
    height:148px;
    width: 148px;
    border: 2px solid #59d;
    border-spacing: 0;
    text-align: center;
}
.img-container img {
    display: inline-block;
    vertical-align: middle;
    max-width: 148px;
    max-height: 148px;
    background-size: contain;
}

<table class="img-container"><tr><td>
    <img src="image_path.jpg">
</td></tr></table>