I have an html file that uses one css file. Inside this file at the very bottom i use this for styles that need to be applied ONLY to the printer version of the page
@media print{
....print styles here...
}
When I call wkhtmltopdf --print-media-type input.html output.pdf, it renders the pdf with styles that are only in the @media print enclosure and ignores the rest of the styles - which DO NOT have @media type specified
Is this normal, or what am i doing wrong here? Do I need to specify all styles for print inside @media print?
wkhtmltopdf has an argument --print-media-type
you can pass. Here is a C# code example using NReco (for illustrative purposes only), but the parameter should work in exactly the same way:
var converter = new NReco.PdfGenerator.HtmlToPdfConverter();
converter.CustomWkHtmlArgs = "--print-media-type";
var pdfBytes = converter.GeneratePdf(html);
return pdfBytes;
This works fine for me in C# using NReco to use print media css, and it takes into account any CSS that is not inside a @media
block too, such as the font-size
of a h3
. Try changing the size of the text or something similar and see if the change is reflected.