https://wpbtips.wordpress.com/ For a block of text enclosed in a colored background (like the example below), you can use this code (in the html post or page editor, or in text widgets): <div style="padding:12px;background-color:#HEX HERE;line-height:1.4;"> TEXT HERE </div> For palettes and hex color codes see the Hex Hub. Padding = space around text; “line-height” may … Continue reading
https://wpbtips.wordpress.com/ Space between lines (“leading”) <div style="line-height:1.4em;"> TEXT HERE </div> This code may also be needed in conjunction with some other codes, to restore normal line-spacing in case those other codes happen to disrupt it; see “Note on coding” here. Space between characters (“tracking”) <span style="letter-spacing:1.2em;">TEXT HERE</span> Space between words <span style="word-spacing:2.1em;">TEXT HERE</span> In all … Continue reading