tags?-暖寄归人的回答
tags?
I have a page that I\'m converting to PDF. This page contains a number of paragraphs and they don\'t all fit onto a single page. If I could reduce the spacing between the
The CSS margin property can be used to affect all paragraphs:
margin
p { margin: XXXem; }
Replace XXX with your desired value; for no space at all use:
XXX
p { margin: 0em; }