2

Is it possible to like adjust the height of <br>or use a different command for it? Right now when you use <br> it's like pressing enter once.

  • 3
    Possible duplicate of [How to change the height of a
    ?](https://stackoverflow.com/questions/1409649/how-to-change-the-height-of-a-br)
    – Laposhasú Acsa Sep 13 '17 at 12:45
  • If you are posting a question on stack first go to the search bar and check that is the question asked by someone before. You have the clearest solution possible for your question. check this link: https://stackoverflow.com/questions/1409649/how-to-change-the-height-of-a-br – Mohammed Wahed Khan Sep 13 '17 at 12:46

2 Answers2

3

Using CSS

br {
   display: block;
   margin: 10px 0;
}

or
margin-top: 10px;

from

How to change the height of a <br>?

Maze90
  • 108
  • 16
2

Try using line-height: on the actual text. This should make the space between the lines bigger or smaller depending on the value you specify on your lets say <p> or other text element.

Docs

OneBeginner
  • 139
  • 2
  • 9