I'm trying to place MICR text for a check report which requires very accurate placement and I'd like to either be able to do calculations in Javascript which requires knowledge of the page margin.
I tried 2 different ways:
1. CSS calc() --- this is NOT supported
2. Javascript access to document.styleSheets[0].rules.item('@page').style.marginLeft --- access to styleSheets is not supported
Either or both would be really great otherwise I have to change the margin TWO places on the page.
I tried 2 different ways:
1. CSS calc() --- this is NOT supported
2. Javascript access to document.styleSheets[0].rules.item('@page').style.marginLeft --- access to styleSheets is not supported
Either or both would be really great otherwise I have to change the margin TWO places on the page.