I'm currently using a different html to pdf processor and have run into a problem (well, several, most of them I know prince will solve). My page size is a non-standard - 8"x10" finished - that needs to be printed on US Letter. For what I'm doing after print I need my content to be vertically centered but aligned with the inside edge. None of my pdf viewers/print driver allow this type of custom margin (browser kind of allows it if I'm using an in browser processor and printing from the html, not the pdf). So, I need to build it into the pdf. Setting page size to letter and increasing margins runs the risk of any margin content ultimately being cut off when I trim the paper down. I'm thinking instead of using bleed but not filling it with anything - something like
bleed-top: 0.5in; bleed-bottom: 0.5in; bleed-outside: 0.5in; bleed-inside: 0;
would give me the positioning. Is this something prince (currently using 15.3, hopefully the 15.4 update is available to my package manager soon) can do, and work the way I'm expecting - minus any syntax problems in my "code" that would need to be fixed?