How to reduce the space between

tags?

后端 未结 13 1509
生来不讨喜
生来不讨喜 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:05

    As shown above, the problem is the margin preceding the

    tag in rendering time. Not an elegant solution but effective would be to decrease the top margin.

    p { margin-top: -20px; }
    

提交回复
热议问题