我想将图片置于mpdf
(版本6>)中心。
这是我发送给mpdf的(缩短的)html输出。 displayed
课程没有帮助。
<style>
IMG.displayed {
display: block;
margin-left: auto;
margin-right: auto }
</style>
<img style="max-height:600px" class="displayed" src="/images/size_original/m_princezna_1.jpg"/>
答案 0 :(得分:3)
在图像的父HTML元素上添加text-align: center
属性,例如:
body { text-align: center }
答案 1 :(得分:1)
我尝试了Finwe的解决方案但是将图像移到了下一页。因此,使用Ram Guru99的解决方案here和那里的解决方案进行了解决方法:
<table style="width:100%;">
<tr>
<td align="center">
<img src="<?php echo $imagepath ;?>"/>
</td>
</tr>
</table>