{"id":366202,"date":"2022-06-03T07:39:11","date_gmt":"2022-06-03T14:39:11","guid":{"rendered":"https:\/\/css-tricks.com\/?p=366202"},"modified":"2022-06-03T07:39:12","modified_gmt":"2022-06-03T14:39:12","slug":"please-give-me-some-space","status":"publish","type":"post","link":"https:\/\/css-tricks.com\/please-give-me-some-space\/","title":{"rendered":"Please Give Me Some Space"},"content":{"rendered":"\n

There’s all kinds of ways to do that. Some more advisable and better-suited for certain situations than others, of course.<\/p>\n\n\n\n\n\n\n\n

We could do it directly in HTML:<\/p>\n\n\n\n

<p>We go from one line...<br><br> down a couple more.<\/p><\/code><\/pre>\n\n\n\n

But that’s what CSS is really for:<\/p>\n\n\n\n

<p>We go from one line...<span>down a couple more.<\/span><\/p><\/code><\/pre>\n\n\n\n
span {\n  display: block;\n  margin-block-start: 1.5rem;\n}<\/code><\/pre>\n\n\n\n

Line height can also give us extra breathing room between lines of text:<\/p>\n\n\n\n

p {\n  line-height: 1.35;\n}<\/code><\/pre>\n\n\n\n

Since we’re talking text, there’s also letter-spacing<\/a><\/code> and word-spacing<\/a><\/code>, not to mention text-indent<\/a><\/code>:<\/p>\n\n\n\n