default printing style in browser/ web mail client
I did some white text on black background design stuff on the newsletter. Since the newsletter is gonna looks good and readable for printing. I need to make the layout and the text are as similar as what is in the browser.
开发者_运维知识库Normally, is that black text and no background color are the default printing style for browser/ web mail client?
If you're asking how to create embedded style rules for printed media, you can do it this way:
<style type="text/css">
@media print { … }
</style>
However you will need to check the supported email clients here
But yes I would say the default for printing style is black text on white background.
精彩评论