How to reduce the space between

tags?

后端 未结 13 1510
生来不讨喜
生来不讨喜 2021-02-04 23:26

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

13条回答
  •  暖寄归人
    2021-02-05 00:06

    The CSS margin property can be used to affect all paragraphs:

    p {
      margin: XXXem;
    }
    

    Replace XXX with your desired value; for no space at all use:

    p {
      margin: 0em;
    }
    

提交回复
热议问题