I would like to centre image in mpdf
(version 6>).
This is my (shortened) html output that I send to mpdf. The displayed
class does not help.
<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"/>
Add a text-align: center
property on a parent HTML element of the image, eg.:
body { text-align: center }