How to reduce the space between

tags?

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

    I have found this to work to give more book style paragraphs:

    p.firstpar {
      margin-top: 0;
      text-indent: 2em;
      padding: 0 5px 0 5px;
    }
    p.nextpar {
      margin-top: -1em;
      text-indent: 2em;
      padding: 0 5px 0 5px;
    }
    

    using the em ("M") unit, rather than px unit, it makes the style independent of the font-size. Padding goes in that order: top, right, bottom, left.

提交回复
热议问题