Home > Software design >  How to change auto wrap space
How to change auto wrap space

Time:05-01

How to make those space equal? I want auto warp and \n's space height to be equal.

CodePudding user response:

set a class for all the p elements that you want have same height. for the height between two p's the you can put them in same p tag or change the p or parent box margin. also change the line-height

CodePudding user response:

The one is the line-heigth parameter, the other one the margin-top and margin-bottom between the text paragraphs (i.e. most likely p elements).

If you set the top and bottom margin of those ps to zero, there won't be any additional space between them.

  • Related