I am trying to show custom text on the image using dompdf
<div class="image" style="font-size:25px">
<img alt="" src="image-url.jpg" />
<div class="name" style="margin-top: -575px; margin-right: 0; margin-bottom: 0; margin-left: 235px; position: absolute;">
<font face="High Tower Text"><em><?php print $some-value; ?></em></font>
</div>
<div class="current-date" style="margin-top :-510px; margin-right: 0; margin-bottom: 0; margin-left: 235px; position: absolute;">
<font face="High Tower Text"><em><?php print $some-value; ?></em></font>
</div>
</div>
but when i try to open it in pdf, first it print image and after that it print the dynamic text, which i am providing.