Hi.
I would like to place a QR code image on the margin, next to a paragraph of text or another image.
When I try to push the QR code to the margin using CSS relative/absolute positioning, the QR code gets overdrawn by the margin.
Is there a way to place image on the margin using CSS positioning ?
Or maybe using @page selector ?
Any help would be much appreciated.
I would like to place a QR code image on the margin, next to a paragraph of text or another image.
When I try to push the QR code to the margin using CSS relative/absolute positioning, the QR code gets overdrawn by the margin.
.image-container {
position:relative;
}
.qr-code {
position:absolute;
top:5%;
left:75%;
}
Is there a way to place image on the margin using CSS positioning ?
Or maybe using @page selector ?
Any help would be much appreciated.