Hi guys,
A book has all its images(over 1 hundred, each with it's own class) defined like:
Code:
.calibre10 {height: 256px, width: 200px}
I want to make them look like:
Code:
.calibre10 {max-height: 100%, max-width: 90%}
I tried the "transform styles" tool provided by Calibre book editor. like:
change property height to max-height if it's greater than 10px
or
if the property height matches pattern like "height: /\d{2,3}[p][x]/gm" regexpression;
They don't work.
Anyone can help?