I\'m using wkhtmltopdf to download a webpage as pdf.
But the css property letter-spacing seems doesn\'t work
font-size:20px; letter-spacing:0px; <
font-size:20px; letter-spacing:0px;
in the CSS add the Following Code for Body
body { font-kerning: normal; text-rendering: optimizeLegibility; }
and the --dpi 200. This Worked for Me.