The following HTML does not render the image:
When I do the same thing via a server call, I can see the image is requested - it's then just not included in the PDF.
Removing either the
This works fine in Prince 13.6, and also Chrome, Firefox and Safari.
<!doctype html>
<html>
<head>
<style>
figure {
display: flex;
}
img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<figure>
<img src="image.png" alt="" height="100" width="100" />
</figure>
<body>
When I do the same thing via a server call, I can see the image is requested - it's then just not included in the PDF.
Removing either the
display: flex;
or the max-width: 100%;
style causes the image to render again but it won't render with both there.This works fine in Prince 13.6, and also Chrome, Firefox and Safari.
Edited by tunetheweb