这是我的css代码:
#header {
background-image: url(../assets_frontend/images/pinpdfheader.jpg);
width: 100%;
background-repeat: no-repeat;
background-size:contain;
height:150px;
}
我尝试将我的html文件转换为DOMPDF但不知何故我的背景图像没有显示,如何在DOMPDF上使用背景图像网址?
答案 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>