Line spacing in html

I noticed that some pages have a 1.5 line spacing, which is good for some page elements. Is it possible to make it in html and how?

You can do it with CSS:


p {
  line-height: 150%;
}

Wow, that was fast! Thanks Vinnie.

I tried it, and it works perfectly. How simple!

Can I set it to, for example, 182%? Does it work?

Did you try? :slight_smile:

Yes, but I don’t see any/much difference.

Try 200% then.