Does anyone know why checkboxes are rendered so tiny in a PDF print output? Is there any way to correct this, or do I have to replace them with images?
How you’re creating the checkbox? Could you provide the code?
<input type=“checkbox”>
Hi did you work this out?
I’m getting the same
The reason why this happen is because print context will be scaled for more accurate positioning of text and because checkbox controls have no function within print context.
You may consider applying the following HTML code:
<span>☐</span>
Instead of the HTML code:
<input type="checkbox">
1 Like
That works. thanks for this
1 Like