is there a standard approach for scaling images in...
# general
m
is there a standard approach for scaling images in pdfs? I'd usually do something like the below but it doesn't seem like max-width is recognized
Copy code
.responsive {
  max-width: 100%;
  height: auto;
}
m
You can have a look at the offical reference here https://bfo.com/products/report/docs/tags/ but neither
max-width
nor
auto
for height/width are supported in BFO
Actually I take the later point back, as per this SA answer
auto
is supported
m
ah nice thanks. that seems to be a good solution for instances where the images are of consistent pixel density